array("Filename"=> "pizza.jpg",
"price" => 14.00,
"Description" => "yummy"
),
"State" => array("MI" => "Big",
"RI" => "Small"
),
"City" => array("BSprings" => "Great",
"Chicago" => "Windy"
)
);
print $Info["Pizza"]["Filename"] . " is the filename for pizza
";
foreach ($Info as $array)
{
foreach ($array as $key => $value)
{
print "For the key $key, the value is $value
";
}
print "
";
}