Jump to content

mysql_fetch_array problem


robert_gsfame

Recommended Posts

I have tried to retrieve the record ['id'] which is an autoincrement number from database

using mysql_fetch_array but then instead of getting the same result as what stored in database, i get this : 1

 

database: 25, 3, 7

mysql_fetch_array: 1, 1, 1

 

what is actually cause the problem, can anyone help me?

thx

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/198458-mysql_fetch_array-problem/
Share on other sites

this is just some code

$selectquery=mysql_query("SELECT * FROM detail dg JOIN userlist dp ON dg.username=dp.username WHERE dg.province='Austin'  LIMIT 0, 5");

while($selectarray=mysql_fetch_array($selectquery)){

$selectid=$selectarray['id'];

echo $selectid."<br>";

}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.