Hello,
I have a db table called zipcodes and with in that table I have a field called zipcode
I want to prepopulate the options in a form "select"
<select size="1" name="zipcodes">
<option>info from db</option>
<option>info from db</option>
<option>info from db</option>
<option>info from db</option>
<option>and so on</option>
</select>
I know how to connect to the db and I know I would start with
SELECT Zipcode FROM Zipcodes
after this I am lost
Thanks
Chris