I figured out that I needed to use $GET instead of $POST. So now, I have text fields that maintain their value (thanks!). But I'm not sure on how to implement that in a drop down menu.... This is what my menu's look like now ($slots is an array).
<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?