I have a multidimensional array like this:
array(2) { [1]=> array(3) { [\"eventID\"]=> string(1) \"1\" [\"eventTitle\"]=> string
The foreach statement will take care of all of this for you, including the associative hashes. Like this:
foreach
foreach($array as $value) { foreach($value as $key => $val) { if($key == "links") { } /* etc */ } }