> $rowData = mysql_fetch_array($result);
mysql_fetch_array can return an array with only numeric indices, only text
(fieldname) indices, *OR* *BOTH*, the default.
You need to use the "optional" argument:
$rowData = mysql_fetch_array($result, MYSQL_ASSOC);
By Day: |By Night:
Don't miss the Zend Web Store's | There's not enough room here...
Grand Opening on January 23, 2001! | Start here:
http://www.zend.com | http://l-i-e.com/artists.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]