hi i want to echo multidimansional array by using for each loop...
i m doing it but i m not able to do...
i hope some onwe will help me..
my code is
$Families = array ( "Farhad" =>array("Ali","Haider","Kashan"), "Sufyan" => array("Shahbaz","Ali2","Azaan"));
foreach($Families as $key2=>$values3)
{
echo "$key2 $values3";
}
how to print all the values?
Regards..