dneimeier Posted December 4, 2011 Share Posted December 4, 2011 I am querying a database and trying to display the names of categories in a drop-down menu. My problem is that the names are not visible. I have the following code: $result = mysql_query('SELECT name FROM category') or die(mysql_error()); echo('Choose a category'); echo('<select name="category">'); echo('<option value="general" >general</option>'); while($row = mysql_fetch_array($result)){ echo('<option style="color:black;" value = "'.$row['name'].'">'.$row['name'].'</option>'); } echo('</select><br /><br />'); The query is good and executing the query retrieves the expected number of results. My dropdown box is the proper length and width (showing that it is trying to print the names); however, nothing is displayed. Any ideas? Quote Link to comment https://forums.phpfreaks.com/topic/252459-php-disply-query-results-in-an-html-dropdown-menu/ Share on other sites More sharing options...
dneimeier Posted December 4, 2011 Author Share Posted December 4, 2011 By the way, I should add that this code worked before. No changes were made. Suddenly, it stopped working. Quote Link to comment https://forums.phpfreaks.com/topic/252459-php-disply-query-results-in-an-html-dropdown-menu/#findComment-1294363 Share on other sites More sharing options...
Pikachu2000 Posted December 4, 2011 Share Posted December 4, 2011 What shows up in View ---> Source? Quote Link to comment https://forums.phpfreaks.com/topic/252459-php-disply-query-results-in-an-html-dropdown-menu/#findComment-1294365 Share on other sites More sharing options...
dneimeier Posted December 4, 2011 Author Share Posted December 4, 2011 Never mind. It must have been a firefox error. I tried to clear the cache; however, I noticed other funny things as I tried to view the source (it wouldn't show up). After a system reboot, it works again. WEIRD Thanks for replying to me so soon - sorry to bother you with this... Quote Link to comment https://forums.phpfreaks.com/topic/252459-php-disply-query-results-in-an-html-dropdown-menu/#findComment-1294367 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.