Best Tutorials website
Latest tutorials

Advertisment

Using PCRE's

Using PCRE's

A introduction to using Regular Expressions in PHP.


Views: 0 | Rating star | by Slicer
PHP - Development

Develop rock-solid code in PHP: Lay the foundation

Develop rock-solid code in PHP: Lay the foundation

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...


Views: 839 | Rating star | by Sean
PHP - Development

PHP Debugging Tutorial

PHP Debugging Tutorial

Some pointers to debugging your code along with a few hints on how to avoid making silly mistakes in your code.


Views: 957 | Rating star | by Nick
PHP - Development

Creating a drop down selection with an array

Creating a drop down selection with an array

Simple PHP scripting on how to create a drop down menu using an array function.


Views: 836 | Rating star | by Adam
PHP - Development

A HOWTO on Optimizing PHP

A HOWTO on Optimizing PHP

PHP is a very fast programming language, but there is more to optimizing PHP than just speed of code execution. This article explains why...


Views: 1063 | Rating star | by Colin
PHP - Development

An Overview of Arrays in PHP

An Overview of Arrays in PHP

This is a brief introductory tutorial on how to use arrays in PHP.


Views: 946 | Rating star | by Troy
PHP - Development

Arrays and PHP: A Primer

Arrays and PHP: A Primer

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...


Views: 893 | Rating star | by Mark
PHP - Development

Script Caching with PHP

Script Caching with PHP

This article is intended for the PHP programmer interested in creating a static HTML cache of dynamic PHP scripts. The article has been written...


Views: 953 | Rating star | by Jason
PHP - Development

Team development method for PHP

Team development method for PHP

This article explains one of possible ways of developing PHP applications in a team. Discussion include: Single 'selector' file, Database...


Views: 947 | Rating star | by Steve
PHP - Development

Controlling PHP Output: Caching and compressing dynamic pages

Controlling PHP Output: Caching and compressing dynamic pages

This 4-page article will explain how to use PHP output controlling functions to make your pages load faster.


Views: 819 | Rating star | by David
PHP - Development

Top 21 PHP Programming Mistakes - Part 3: Seven Deadly Mistakes

Top 21 PHP Programming Mistakes - Part 3: Seven Deadly Mistakes

In this last part of the 'Top 21 PHP Programming Mistakes' series, the discussion involves what the author calls 7 'deadly'...


Views: 789 | Rating star | by Mark
PHP - Development

Output buffering, and how it can change your life

Output buffering, and how it can change your life

Output buffering is a powerful feature of PHP 4.0. that lets developers create advanced and efficient programs very easily. This article covers the...


Views: 861 | Rating star | by Jason
PHP - Development

Best Practices: PHP Coding Style

Best Practices: PHP Coding Style

This article by Tim Perdue at PHPBuilder.com offers helpful guide to some of the best practices in PHP coding style. Topics covered: Indenting,...


Views: 874 | Rating star | by Donald
PHP - Development

Extending PHP

Extending PHP

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: 998 | Rating star | by Mathew
PHP - Development

Checking Data

Checking Data

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...


Views: 978 | Rating star | by Sarah
PHP - Development

Top 21 PHP progamming mistakes - Part I: Seven Textbook Mistakes

Top 21 PHP progamming mistakes - Part I: Seven Textbook Mistakes

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: 683 | Rating star | by Tutorial
PHP - Development

Top 21 PHP Programming Mistakes - Part 2: Seven Serious Mistakes

Top 21 PHP Programming Mistakes - Part 2: Seven Serious Mistakes

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...


Views: 707 | Rating star | by Daniel
PHP - Development

COM Functions in PHP4 (Windows)

COM Functions in PHP4 (Windows)

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...


Views: 837 | Rating star | by Jason
PHP - Development

Debugging PHP: Did You Remember to

Debugging PHP: Did You Remember to "Dot All Your I's and Cross All Your T's"?

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,...


Views: 0 | Rating star | by Marry
PHP - Development

PHP Debugging with Class

PHP Debugging with Class

This article talks about a technique for debugging CGI programs written with the PHP scripting language. Topics include: Creating the Debug Class,...


Views: 878 | Rating star | by Steve
PHP - Development