MBussey24
09-05-2007, 08:53 PM
I'm trying to create a form with checkboxes. I have the results of the form appear on a results page. I'm having problems trying to figure out how to keep these checkboxes checked. Here's a sample of my code:
<form action="results.php" method="post">
Please check...
<input type="checkbox" name="inquiry[]" value="Inquiry" />
</form>
The results will be posted to results.php. How would I go about keeping these results checked on the results page?
<form action="results.php" method="post">
Please check...
<input type="checkbox" name="inquiry[]" value="Inquiry" />
</form>
The results will be posted to results.php. How would I go about keeping these results checked on the results page?