
phpwin.blogspot.com
PHPSaturday, July 18, 2009. In PHP, there are three kind of arrays:. Numeric array - An array with a numeric index. Associative array - An array where each ID key is associated with a value. Multidimensional array - An array containing one or more arrays. A numeric array stores each array element with a numeric index. CarII=array("Saab","Volvo","BMW","Toyota");. Echo $carll[0] . " and " . $carll[1] . " are Swedish cars. Echo $cars[0] . " and " . $cars[1] . " are Swedish cars.";. Ages['Peter'] = "32";. To ad...
http://phpwin.blogspot.com/