Thanks Bastien, but it's STILL not working!! In the e-mail that is sent, instead of having a value I'm getting the word 'Array'!! I'm sure it's something very simple and I'm just missing it. The HTML now reads:
<INPUT TYPE="checkbox" NAME="Camps[]" VALUE="Henley">
<INPUT TYPE="checkbox" NAME="Camps[]" VALUE="Seville Week 1">
<INPUT TYPE="checkbox" NAME="Camps[]" VALUE="Seville Week 2">
and the script reads:
?PHP $fmt_Response=implode("", file("response.htt"

);
$fmt_Mail=implode("", file("Mail.htt"

);
while(list($Key, $Val)= each($HTTP_POST_VARS)) {
$fmt_Response=str_replace("{$Key}", $Val, $fmt_Response);
$fmt_Mail=str_replace("{$Key}", $Val, $fmt_Mail);
}
$name = $HTTP_POST_VARS["name"];
$address = $HTTP_POST_VARS["address"];
$phone = $HTTP_POST_VARS["phone"];
$email = $HTTP_POST_VARS["email"];
$age = $HTTP_POST_VARS["age"];
$sex = $HTTP_POST_VARS["sex"];
$Experience = $HTTP_POST_VARS["Experience"];
$TShirtSize = $HTTP_POST_VARS["TShirtSize"];
$Comments = $HTTP_POST_VARS["Comments"];
$Camps = $HTTP_POST_VARS["Camps"];
$mailText = "$fmt_Mail \n\t Name: $name \n\t Address: $address \n\t Phone Number: $phone \n\t E-Mail: $email \n\t Sex: $sex \n\t Experience: $Experience \n\t T-ShirtSize: $TShirtSize \n\t Comments: $Comments \n\t Interested in Camps: $Camps ";
mail($HTTP_POST_VARS["recipient"], $HTTP_POST_VARS["subject"], $mailText );
echo $fmt_Response;
?>