I have a form with selection drop down box... like this..
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<select>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
I have selected option 2 from first selection, and selected 'a' from second selection drop down box and submitted the form and stored in the database. So I have selected 2 options, and a option from both drop down boxes.
Now I want to edit this selection drop down box again and update new value 3 from first selection drop down and second drop down same value no change.
Please provide some input on how to do this update successfully..