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