Greetings:
A newbie question. I have a form that is completed and every time we save the form the value of the drop down list is reset to default. I presume you need to do a query of the database and challenge with drop down list to make that the primary field.
Here is the code I have so far:
I appreciate your help in advance.
Henry
A newbie question. I have a form that is completed and every time we save the form the value of the drop down list is reset to default. I presume you need to do a query of the database and challenge with drop down list to make that the primary field.
Here is the code I have so far:
Code:
<td colspan="2" id="c180">Water Source:
<select name="water_source" size="1" id="water_source" style="height:15px width:67px" value="<?php echo $water_source1; ?>">
<option value=""></option>
<option value="Drilled">Drilled</option>
<option value="Burrowed">Burrowed</option>
<option value="Public">Public</option>
<option value="Spring">Spring</option>
</select></td>
Henry
Comment