Forum Moderators: coopster
html:
<p><input type="checkbox" name="product[]" value="Murad">Murad</p>
<p><input type="checkbox" name="product[]" value="Proactiv" style="vertical-align:middle">Proactiv</p>
Etc. for 14 different products.
Here's the php form code:
$Indhold .= "How would you describe your pores?: ". $validator->get("Question4") ."\r\n";
$Indhold .= "What brands do you currently use?: ". $validator->get("product") ."\r\n";
$MailSuccess = mail($SendTo,$Subject,$Indhold,$FromString);
Question 4 works just fine - only one selection is possible. But the "product" checkbox returns a blank in the email.
I certainly appreciate if anyone could look at this.
Thanks!
Glen