hi there.. is there any function like !=EOF to seach through array uptill its last element.
I normally use this:
reset($array); while (list($key, $value) = each($array)) { // code in here to play with $key and $value }
Or equivalently,
foreach($array as $key=>$value) { //etc., }