Hi I have a drop down list which the value is stored in database when I submit the form
]<select name="type" id="Type">
<option selected="selected" value="">[Select one]</option>
<option value="Meeting">Meeting</option>
<option value="Conference">Conference</option>
<option value="Workshop">Workshop</option>
</select>
For example the user greedyisgood selects Meeting and store it in the database. My problem is I have an edit page and what I want is the value of dropdown in the database will now be selected in the edit page like this
]<select name="type" id="Type">
<option value="">[Select one]</option>
<option selected="selected" value="Meeting">Meeting</option>
<option value="Conference">Conference</option>
<option value="Workshop">Workshop</option>
</select>
Any idea on how it works? Thanks in advance