I have this array:
<?php
$continents=array("Asia"=>array("Bangladesh","India","Pakistan"),
"Europe"=>array("England","France"),
"Africa"=>array("Kenya","Libya","Somalia"));
?>
Now I would like to echo:
In Africa there are: Kenya, Libya, Somalia.
How can I do that? Can anyone please help me? Thanks in advance.