NArc0t1c Posted November 7, 2007 Share Posted November 7, 2007 Hello. I'm trying to make a script that will show all rows and columns in the specific table. It is actually sort of alike a tutorial, to test your mysql queries. I have different about of column's in each table, as well as rows. My question is, how can I Do this, phpMyAdmin has a perfect example of this, but how can I do this? My current scripting for this is the following: $c = mysql_pconnect('localhost','root',''); while($qr = mysql_fetch_assoc(mysql_query($cmd,$c))) { foreach($qr as $q => $r) { echo '[' . $q . '] => ' . $r . '<br>'; } echo "\n"; } The problem with that is, it shows the first row, but repeats in for an infinity. Also please note that it should not use any html elements, because I would like it to be run trough the php executable. The output should be similar to: [id] => 1 [name] => John [last] => Doe [id] => 2 [name] => Jane [last] => Doe Thanks! Link to comment https://forums.phpfreaks.com/topic/76358-solved-infanite-while-loop/ Share on other sites More sharing options...
NArc0t1c Posted November 7, 2007 Author Share Posted November 7, 2007 Bah.. $query = mysql_query($cmd,$c); while($qr = mysql_fetch_assoc($query)) { foreach($qr as $q => $r) { echo "[" . $q . "] => " . $r . "\n"; } echo "\n"; } Link to comment https://forums.phpfreaks.com/topic/76358-solved-infanite-while-loop/#findComment-386619 Share on other sites More sharing options...
aschk Posted November 7, 2007 Share Posted November 7, 2007 I was about to ask what $cmd was.... Link to comment https://forums.phpfreaks.com/topic/76358-solved-infanite-while-loop/#findComment-386621 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.