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
https://forums.phpfreaks.com/topic/91042-phpmysql-drop-down-menu/
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();

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.