Hi.
I need some help with manipulating form vars, in particular checkboxes. I currently have a form setup that dynamically creates X number of checkboxes, all named "accept_check_X" where X is the index # of that record from the DB.
When I submit I want to be able to check the status of each checkbox to see if it's set to on or off. Right now I'm using $_POST, but it doesn't seem to contain the checkboxes that were left unchecked. It just has the checkboxes that were checked and submitted.
Is there anyway I can check the status of all the checkboxes from the previous page?