Advertisment
Learn how recursion works and how to implement it in PHP.
Views: 1125 | | by Donald
PHP - Development
Article describing a method of representing HTML form controls in PHP ising OO approach enabling hassle-free and easy way to program controls...
This document's goal is to present the basic tNG features. We'll create a simple site that will be used to manage a company's...
Templates provide a simple means to seperate server side code from client side code in our scripts. This article looks at when template systems are...
UML (Unified Modelling Language) is a mechanism for representing software in the form of diagrams. Essentially it allows to design our applications...
Views: 1087 | | by Mathew
PHP - Development
A introduction to using Regular Expressions in PHP.
The Develop rock-solid code in PHP series is about solving practical real-life problems in medium- to large-scale applications. With a sharp focus...
Some pointers to debugging your code along with a few hints on how to avoid making silly mistakes in your code.
Simple PHP scripting on how to create a drop down menu using an array function.
PHP is a very fast programming language, but there is more to optimizing PHP than just speed of code execution. This article explains why...
This is a brief introductory tutorial on how to use arrays in PHP.
For many years, arrays have been used to logically store and sequence data. They have also been the point of confusion for many developers. This...
This article is intended for the PHP programmer interested in creating a static HTML cache of dynamic PHP scripts. The article has been written...
This article explains one of possible ways of developing PHP applications in a team. Discussion include: Single 'selector' file, Database...
This 4-page article will explain how to use PHP output controlling functions to make your pages load faster.
In this last part of the 'Top 21 PHP Programming Mistakes' series, the discussion involves what the author calls 7 'deadly'...
Output buffering is a powerful feature of PHP 4.0. that lets developers create advanced and efficient programs very easily. This article covers the...
This article by Tim Perdue at PHPBuilder.com offers helpful guide to some of the best practices in PHP coding style. Topics covered: Indenting,...
This article describes how to easily create a PHP extension with C or C++. Examples of bundled PHP extensions include the MySQL extension or the...
Views: 1085 | | by Mathew
PHP - Development
This article discusses three basic steps that can be taken to avoid creating bad code: ensuring that you can trust your input by verifying the...