Hi all,
I create an array using the $row = mysql_fetch_array($result,MYSQL_BOTH)function.
It's great because i can reference an element value using either the numeric or associative key. However, I need to pass only the numeric keyed portion of the array as a json string back to the client side.
Is there a PHP function that will separate numeric array from the associative array?
I checked the php site but could not find any so i thought i'd check with you all.
thanks.