Jump to content

Dynamic Form Pulldown


beesfan_london

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/54113-dynamic-form-pulldown/
Share on other sites

<?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>";
  }

?>

Link to comment
https://forums.phpfreaks.com/topic/54113-dynamic-form-pulldown/#findComment-267513
Share on other sites

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.