hello, I want to retrieve the info from 2 fields in a table (mysql) and have one of the field's info be the <option> and the other be the value="". I got an idea on how I would do this just for entry, but I have more than one. here's an example:
<select name="something" size="1">
<option selected>Select link to edit:
<option value="value from database">name of link from database
<option value="value2 from database">name2 of link from database
<option value="value3 from database">name3 of link from database
</select>
how would I go about doing this?
thanx a lot