Checkbox sets in Email Form

I’m having a hard time getting the checkboxes and such to work.

I need PHP to send a list of only the checked values through the email.

I have about seven sets to do this too and they’re supposed to be embedded in the html email that the php sends when the form is submitted.
Any help would be amazing.
Thanks. :)

easiest way i know is:

<input type="checkbox" name="cblist[]" value="I am the first checkbox"/> <input type="checkbox" name="cblist[]" value="I am the second checkbox"/> <input type="checkbox" name="cblist[]" value="I am the last checkbox"/>

[php]
if(is_array($_POST[‘cblist’])) $massage.=nl2br(htmlentities(implode(“n”,$cblist)));
[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service