Php Includes
Category: Web Development > PHP      Posted: 05 May 07

Without understanding much about the details of PHP, you can save yourself a great deal of time with the use of the PHP include function. The include function takes a file name and simply inserts that file's contents into the script that calls used the include function

Basic PHP
Category: Web Development > PHP      Posted: 05 May 07

Here we would like to show the very basics of PHP in a short, simple tutorial. This text only deals with dynamic web page creation with PHP, though PHP is not only capable of creating web pages

Installing PHP on your computer
Category: Web Development > PHP      Posted: 05 May 07

Installing PHP on your computer

PHP Arrays
Category: Web Development > PHP      Posted: 05 May 07

An array in PHP is actually an ordered map. A map is a type that maps values to keys. This type is optimized in several ways, so you can use it as a real array, or a list (vector), hashtable (which is an implementation of a map), dictionary, collection, stack, queue and probably more. Because you can...