I have a form with several checkboxes. When I submit it to another php page, I am wondering: How can I tell which ones are checked without calling isset on every checkbox name? (if there is a way). If I give each of the checkboxes the same name, then only the last selected checkbox is returned.
Thanks,
Michael
A quirk of PHP requires that form controls end their name with the characters
[]in order for more than one of them to be recognised.