Jump to content

Echoing everything from the Database


dean7

Recommended Posts

hi all, I have a piece of code which I coded where it selects all there cars out of the database and shows them, well it is meant to:

 

$getall = mysql_query("SELECT car, id FROM garage WHERE owner='$username'");
$gotall = mysql_fetch_object($getall);

echo "$gotall->car  - $gotall->id<br />";

 

Its meant to echo out all the cars which the user own, but for some reason its only echoing one car.

 

Can anyone see why its only showing one car with the id not all the cars they own?

 

Thanks.

Link to comment
Share on other sites

You have to use a loop..

 

 

<?php

$getall = mysql_query("SELECT car, id FROM garage WHERE owner='$username'");

while($row = mysql_fetch_array($getall)){
echo $row['car']. " - ". $row['id'];
echo "<br />";
}
?>

Thanks, that worked :)

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.