apocra Posted August 21, 2006 Share Posted August 21, 2006 Hi all,I've got this weird problem which I can't seem to get rid off. I bet it will be some minor glitch I keep failing to notice, I hope someone here can help me.I've got a database with multiple records (2 in the test-db) which I want to print onscreen in a table. But before that I want to check the id of the records with the id in a textfile. To do this I try to get the id's in a array (test-db has id #1 and #45) and am using the following code:[code]$pid = mysql_query("SELECT id FROM profiel ORDER BY id ASC LIMIT $num") or die('Could not find data in database ' . mysql_error());$pid2 = mysql_fetch_array ($pid, MYSQL_NUM);[/code]($num = the number of rows in the db and I've checked this, it's 2)The array $pid2 only has one id in it and not the 2 that are in the database.Help would be very much appreciated.Cheers,Apocra Link to comment https://forums.phpfreaks.com/topic/18173-weird-selection-problem/ Share on other sites More sharing options...
shoz Posted August 21, 2006 Share Posted August 21, 2006 mysql_fetch_array returns one row at a time.[code]$pid = mysql_query("SELECT id FROM profiel ORDER BY id ASC LIMIT $num") or die('Could not find data in database ' . mysql_error());while($pid2 = mysql_fetch_array ($pid, MYSQL_NUM)){ echo $pid2[0]."<br />\n";}[/code]http://php.net/mysql_fetch_array Link to comment https://forums.phpfreaks.com/topic/18173-weird-selection-problem/#findComment-77947 Share on other sites More sharing options...
apocra Posted August 21, 2006 Author Share Posted August 21, 2006 Thanks, that did the trick! I knew it would be some stupid oversight. Link to comment https://forums.phpfreaks.com/topic/18173-weird-selection-problem/#findComment-77961 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.