I have a form set up that has an option of selecting up to three checkboxes (all in the same group). The thing is that when I send the form to the PHP script and it sends it to my email it only shows one of the three options even if all three were selected. Here is my script code:
<?php #processor.php May 18, 2005
if(isset($_POST['btnsubmit'])) {
$to = "me@mail.com";
$subject = "Blackstone Message";
$name_field = stripslashes($_POST['fullname']);
$email_field = $_POST['email'];
$phone_field = stripslashes($_POST['phone']);
$worked = $_POST['worked'];
$who = $_POST['who'];
$message = stripslashes($_POST['message']);
$subject .= " from $name_field";
$body = "From: $name_field
E-Mail: $email_field
Phone: $phone_field
Worked With Us? $worked
Worked With Who? $who
Message:
$message";
mail($to, $subject, $body, 'From: form@form.com');
header ("Location: http://www.notreal.com/thankyou.php?name=$name_field" );
} else {
echo "Error: No data has been sent";
}
?>
Can someone please let me know what I need to change in order to have it show all selected checkboxes? The checkboxes are for the $who = $_POST[‘who’]; part.
Thanks!