Jump to content

Drop Down Box


dean7

Recommended Posts

Hi all, ive just coded a new thing for my website which lets users upgrade there car to a certain speed, its all coded and works fine, but im just not sure how todo one thing on it.

 

<?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 />";
}
?>

 

That bit of my code, select the car and the car ID from my table garage, but i'm wanting it in a drop down box which shows all the cars in there garage, but not sure how I would do this.

 

Any advice?

 

Thanks.

Link to comment
Share on other sites

This should create a dropdown menu...

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

echo "<select>";
while($row = mysql_fetch_array($getall)){

echo '<option value="'.$row['id'].'">';
echo $row['car'].'</option>';
//echo $row['car']. " - ". $row['id'];
//echo "<br />";
}

echo "</select>";

 

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.