Well... you would need a recursive function...
Somethink like :
function Ecrire($arrDonnees) {
foreach($arrDonnees as $strCle => $strValeur) {
if(is_array($strValeur)) {
Ecrire($strValeur);
} else {
echo "$strCle => $strValeur<BR/>\n"; }
}
}
Ecrire($myarray);
Simply because if you have something like that :
$array[0][1][2][3][4][5] = "something", you have to do lots of foreach...