Learn web design and programming with our free video and text tutorials.
Web Designer? Design and market your own professional website with easy-to-use tools.
Browse our HTML, XHTML and CSS tutorials to learn how to create your website at LearnWebsiteDesign.com or download one of our free website templates.
Providing high quality free software to download
A multi-dimensional array is an array value that is set to another array within the main array, which is basicaly a list within a list.
<?php
$firstcouple = array("male" => array(
"firstname"=>"Angel",
"lastname"=>"Rico",
"age"=>124
),
"female" => array
(
"firstname"=>"Bertha",
"lastname"=>"Rico",
"age"=>123
)
);
echo $firstcouple["male"] ["firstname"];
echo " & ";
echo $firstcouple["female"] ["firstname"];
?>
The code above outputs:
Angel & Bertha