I'm trying to pass the values from a group of checkboxes on a form to another page for PHP to process.
I have my form setup so the POST action is the other page.
When I submit the form, if I have checked multiple values in the checkbox only the last value entered is actually returned. Now granted all of my checkboxes have the same name (but not the same value of course), but I'm used to doing it that way with other tools.
Do I have to name each checkbox a different name and step through each checkbox? Surely there's an easier way.