Best Tutorials website
Latest tutorials

Advertisment

Recursion in PHP

Recursion in PHP

Learn how recursion works and how to implement it in PHP.


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

Object-oriented approach to programming HTML form components in PHP

Object-oriented approach to programming HTML form components in PHP

Article describing a method of representing HTML form controls in PHP ising OO approach enabling hassle-free and easy way to program controls...


Views: 920 | Rating star | by Ben
PHP - Development

ImpAKT Basics Tutorial

ImpAKT Basics Tutorial

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


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

Templates and Template Engines

Templates and Template Engines

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


Views: 1031 | Rating star | by Simon
PHP - Development

PHP and UML Class Diagrams

PHP and UML Class Diagrams

UML (Unified Modelling Language) is a mechanism for representing software in the form of diagrams. Essentially it allows to design our applications...


Views: 1014 | Rating star | by Mathew
PHP - Development

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: 845 | 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: 966 | 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: 842 | 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: 1070 | 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: 952 | 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: 899 | 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: 962 | 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: 955 | 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: 824 | 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: 797 | 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: 867 | 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: 882 | 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: 1004 | 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: 987 | Rating star | by Sarah
PHP - Development