Jump to content

[SOLVED] Infanite while Loop


NArc0t1c

Recommended Posts

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

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.