beesfan_london Posted June 3, 2007 Share Posted June 3, 2007 Hi, i'm pretty new to PHP so please go easy on me. I'm building a form and need to have the options in a pulldown menu pulled from a mysql database, i understand the basics of sql and have used forms before, i just need to see an example to get me on my way. Does anyone on here know of a good tutorial? Thanks, Andrew Quote Link to comment https://forums.phpfreaks.com/topic/54113-dynamic-form-pulldown/ Share on other sites More sharing options...
trq Posted June 3, 2007 Share Posted June 3, 2007 <?php $sql = "SELECT item FROM menu"; if ($result = mysql_query($sql) && mysql_num_rows($result)) { echo "<select name=\"menu\">"; while ($row = mysql_fetch_assoc($result)) { echo " <option name=\"{$row['item']}\">{$row['item']}</option>"; } echo "</select>"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/54113-dynamic-form-pulldown/#findComment-267513 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.