Justtechjobs.com Find a programming school near you






Online Campus Both


php-db | 2000121

Re: [PHP-DB] Fetching into an array in MySQL From: Andy Etemadi (andy <email protected>)
Date: 12/11/00

Try:

while ($row = mysql_fetch_array($result))
   {
   $userID[]=$row["userId"];
   $lname[]=$row["Lname"];
   $fname[]=$row["Fname"];
         }

Jon McFarling wrote:

> 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>

-- 
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>