.htaccess Wrappers with PHP by Robert Plank 1/07/06
HTACCESS is a remarkable tool you can use for password protection, error handling (like custom 404 pages), or HTTP redirects. It can also be used to transform whole folders in seconds: adding headers to all your HTML documents, watermarking all your images, and more. more...
PHP Server to Client with No Refresh by Adam Fletcher 7/15/05
Although most of our companies work is template based design, the end result is always unique and adapts to each client's individual needs. more...
Generating PHP Database Access Layers by Jack Herrington 7/08/05
The productivity benefits of the PHP platform are well known. Its easy syntax, latent typing, high level of abstraction, and support for objects simplify and accelerate the production of large applications. In this article, I propose using code generation tools to build even higher-quality and more easily maintained PHP code. more...
PHP/MySQL Search Engine script by Emir Plicanic 6/03/05
This script searches MySQL database fields specified by the owner and displays the results with keywords in bold. more...
UnitTesting in PHP using SimpleTest by Saleh Jamal 5/15/05
Unit testing is writing more code which will test the main code wirtten by "throwing" sample data at it and examining what it gets back. more...
PHP's Header Function by Chief Programmabilities 3/22/05
PHP's header() function allows you to send arbitrary HTTP headers. Among other things, header() can be useful for authentication or page-level redirection.
more...
Creating an Image with PHP's GD by Chief Programmabilities 3/07/05
You want to create a new image on the fly with PHP, whether it is in GIF, PNG, or JPEG format.
more...