I'm running into a logic problem here. What I'm doing is generating a list of items to be approved, and then have a checkbox in the form when submitted will approve the item and move it to another database table.
My form looks something like this:
for my checkbox, I'm using this:
When I submit the form, how can I go through all the submitted results and verify that they were checked? I know how to grab values with php submitted forms, but I've only done simple text input.
My form looks something like this:
Code:
Item ID | Item Desc | Item Num | checkbox
for my checkbox, I'm using this:
Code:
<input type="checkbox" value="y" name="{$row['item_id'}">
When I submit the form, how can I go through all the submitted results and verify that they were checked? I know how to grab values with php submitted forms, but I've only done simple text input.







