I have the following main array called $m
$m
Array ( [0] => Array ( [home] => Home ) [1] => Arra
Try this:
foreach($options as $o){ foreach($m as $check){ if(isset($check[$o])) echo $check[$o]; } }
Although It would be better TO have the array filled with the only the pages and not a multidimensional array