Hi
I have a form with a drop down list:
<td><select id="tp1" name="tp1" disabled>
<option value="existing">Existing /option>
<option value="new">New</option>
</select></td>
The form submits back to the same page, so I'd like it to reflect the data entered.
I've done this on text boxs with value="$_POST['rr1'] etc..
How would I do it on the above drop down ?
So if new was select it would be highlighted etc..
Thanks