Static Drop Down Box
Does anyone know how to setup a static drop down that will allow users to retrieve the selection from a database for example:
<select name=Test id=Test>
<option value=Null>Default</option>
<option value=1>1</option>
<option value=2>2</option>
<option value=3>3</option>
</select>
Once the user selects one of these options and saves it to a database, comes back to the page and wants to see which option they picked using the option from the database but still have the above option available to them.
|