Justtechjobs.com Find a programming school near you






Online Campus Both


php-db | 2000121

[PHP-DB] Fetching into an array in MySQL From: Jon McFarling (mcfa0773 <email protected>)
Date: 12/06/00

I am trying to fetch the data gathered from a query into several arrays
I have tried the following but I lose the first row fetched:
while ($row = mysql_fetch_array($result))
   {
   $userID[$userId++]=$row["userId"];
   $lname[$Lname++]=$row["Lname"];
   $fname[$Fname++]=$row["Fname"];
         }
to fix this I tried
while ($row = mysql_fetch_array($result))
   {
   $userID[$userId]=$row["userId"];
   $lname[$Lname]=$row["Lname"];
   $fname[$Fname]=$row["Fname"];
         }
but no data was stored into the arrays
any ideas?
Jon

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: php-db-unsubscribe <email protected>
For additional commands, e-mail: php-db-help <email protected>
To contact the list administrators, e-mail: php-list-admin <email protected>