Advertisment
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: 1084 | | 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...
This article is intended for the PHP programmer interested in avoiding some of the most common mistakes when applying PHP. This first part of the...
Views: 765 | | by Tutorial
PHP - Development
In this second part of the series, it describes 7 common mistakes in PHP programming that will lead to drastically slower run times and less secure...
The built-in COM functionality of PHP4 is quite attractive for some of us programming in the win32 environment. So far, there is not much...
So you've finally managed to install PHP. Anxious to use your new tool, you find the print function in the manual, write your own hello world,...
This article talks about a technique for debugging CGI programs written with the PHP scripting language. Topics include: Creating the Debug Class,...