My problem is that if there is a 'zero' in the array, is_array() always returns TRUE. When I take the zero out it works fine. Is this a bug or does it do this for some logical language reason?
is_array("MIKE", array(0,1,2,3)) returns TRUE
is_array("MIKE", array(1,2,3)) returns FALSE
I'm using PHP 4.1.2 if that helps any...
thanks,
Mike