I have several array variables like this:
<?
$var_array["awal"]["kahiji"] = "Iyeu nu kahiji";
$var_array["awal"]["kadua"] = "Ayeuna kadua";
$var_array["akhir"]["sisanya"] = "Nu akhir pisan";
?>
I want to know the parent key of the key "kadua" which will produce "awal" in output, is it possible?, do I need to loop, or is there a simpler way to use functions from PHP ?, thanks in advance, your tricks or help will really help me.