Jump to content

php/mysql drop down menu


truck7758

Recommended Posts

Hi,

 

Im having a bit of trouble getting a drop down menu to populate with data from my sql database

I have this code which makes a drop down menu:

<?

$category = array(

 

);

$category = str_replace(" ", " ", $category);

 

echo '<SELECT name=category>';

foreach ($category as $key => $value)

{

echo '<OPTION value='.$value.'> '.$value.'';

}

echo '</select>';

 

?>

 

and this creates the list of the data i want in the drop down menu:

<?

 

$mysqli = new mysqli('localhost','username','password');

$mysqli->select_db('orders');

 

$result = $mysqli->query("SELECT * FROM user");

 

while($row = $result->fetch_assoc()) {

print $row['name'] . '<br/>';

}

 

$result->close();

 

?>

 

Was just looking for some help on how to merge the two, if possible

 

Thanks,

Mike

Link to comment
Share on other sites

have sorted it now using the following:

 

$mysqli = new mysqli('localhost','username','password');

$mysqli->select_db('orders');

 

$result = $mysqli->query("SELECT * FROM user");

 

echo '<SELECT name=category>';

while($row = $result->fetch_assoc()) {

echo '<OPTION>'.$row['name'].'</option>';

}

echo '</select>';

 

$result->close();

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.