Checking Checkboxes
Posted: Sat Mar 27, 2004 9:49 pm
Hey,
I'm creating an online order form with a list of all products from a database. They all have checkboxes next to them:
The form is posted to another page which I want to diplay all the checkboxes which are true. I know I have to loop through the items somehow, any ideas?
I'm creating an online order form with a list of all products from a database. They all have checkboxes next to them:
Code: Select all
<input type="checkbox" name="item01"> Item 1
<input type="checkbox" name="item02"> Item 2
<input type="checkbox" name="item03"> Item 3
etc...