truck7758 Posted February 14, 2008 Share Posted February 14, 2008 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 More sharing options...
truck7758 Posted February 14, 2008 Author Share Posted February 14, 2008 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 https://forums.phpfreaks.com/topic/91042-phpmysql-drop-down-menu/#findComment-466658 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.