here is an example of a text box on the error page form:
Name: <input name="fullname" type="text" id="fullname" value="<?php echo $fullname; ?>" size="40">
How would I get the following to work?
Type: <select name="pet1type" size="1" id="pet1type">
<option selected>Choose One</option>
<option value="Dog">Dog</option>
<option value="Cat">Cat</option>
</select>
By default Choose One is selected by in the validation if it still is selected it errors out, but if it is selected (either cat or dog) and the form errors because of another entry how do I code this to put their selection back?
Here is the other dilemma: <input name="boardservice" type="checkbox" id="boardservice" value="YES">. if the box is checked, how do i get the error form to check it?
Sorry for being such a noob... I am still learning. Thanks in advance. :o