Jump to content

amg182

Members
  • Posts

    130
  • Joined

  • Last visited

Everything posted by amg182

  1. <select name='drop'> <option "Input" value="choose from list"></option> <?php $combo = "SELECT field FROM table"; $result = mysql_query($combo) or die(mysql_error()); while($row = mysql_fetch_array($result)){ echo "<option value='". $row['field'] ."'>". $row['field'] ."</option>"; } ?> </select> Hope this helps
×
×
  • 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.