php-db | 2000121
Date: 12/06/00
- Next message: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Previous message: Pedro M. S. Oliveira: "[PHP-DB] i need help indexing a search"
- Next in thread: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Maybe reply: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Reply: Andy Etemadi: "Re: [PHP-DB] Fetching into an array in MySQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Previous message: Pedro M. S. Oliveira: "[PHP-DB] i need help indexing a search"
- Next in thread: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Maybe reply: Anthony Martin: "RE: [PHP-DB] Fetching into an array in MySQL"
- Reply: Andy Etemadi: "Re: [PHP-DB] Fetching into an array in MySQL"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

