I have a page with several forms and these have dropdown menus like this:
<label>Slot 0: </label>
<SELECT NAME="Slot0" onChange="checkers.submit();" >
<?php
foreach ($slots as $s0) {
echo '<option value="'.$s0.'">'.$s0.'</option>';
}
?>
Could anyone tell me how I could ensure that the selected value remains selected upon submission of the page? Submission will reload the same page.
Thanks!