On Tue, 2007-07-31 at 11:29 -0400, Ken Tozier wrote:
> Turns out that objects returned from SQL queries contain two parts  
> for every field, one with a string key and one with an index key.  
> Adding an "is_numeric" test on the keys allows you to filter out the  
> numeric keys if you want to. For example:
> 
> foreach ($row as $key => $value)
> {
>       if (!is_numeric($key))
>       {
>               /* do stuff here */
>       }
> }

BAH, use the correct function. You're using mysql_fetch_array() when you
SHOULD be using mysql_fetch_assoc().

Cheers,
Rob.
-- 
...........................................................
SwarmBuy.com - http://www.swarmbuy.com

    Leveraging the buying power of the masses!
...........................................................

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to