so if I have
$camera_routes = array (
"N_down_DF_in_on_Memorial" =>array(42, 17,30, 33, 36, 32, 34),
"NW_down_CROW" =>array(29, 37, 16, 4, 35, 5),
"NW_down_14th" =>array(39, 35, 5)
);
//lets show the routes
for ($i=0; $i<=count($camera_areas)-1; $i++) {
echo $camera_areas[$i];
}
How do I echo $camera_routes to get the first set of values - the descriptions?
"N_down_DF_in_on_Memorial"
"NW_down_CROW"
"NW_down_14th"
Much Thanks,