Is there a way to set up a group of checkboxes with the same name and have formmail.php return all the values that are checked associated with the one name? Right now it seems like it will only return the last option checked if multiple checkboxes with the same name are selected. For now, I'm giving each checkbox its own name, but it'd be nice to see it be able to take muliple checkboxes and hand them all off, i.e:
What pets do you own?
[x] cat
[x] dog
[ ] snake
[ ] Billy
[x] fish
[x] goat
[x] wife
----------------------------
Pets: cat, dog, fish, goat, wife
Instead, it just returns:
Pets: wife
You'll need to rename the name of your input (checkbox) to use []'s.
http://www.boaddrink.com/projects/phpformmail/readme.htm#multiple
-Andrew Riley