array
Posted: Mon Jun 16, 2008 3:40 am
$countries = array (
"london,united kingdom,",
"manchester,united kingdom",
"madrid,spain",
"lisbon,portugal"
);
With the array above, I would like to display the following
-united kingdom
london
manchester
-spain
madrid
-portugal
lisbon
thanks
"london,united kingdom,",
"manchester,united kingdom",
"madrid,spain",
"lisbon,portugal"
);
With the array above, I would like to display the following
-united kingdom
london
manchester
-spain
madrid
-portugal
lisbon
thanks