I like to use arrays for checkbox submission here is an example of how to handle this. If you are going to pass the information from form to form you can use the implode() and explode() functions to pass the arrays through hidden variables.
<?
if (isset($fruits)) {
$message = "Fruits Selected :";
for ($i =0; $i < sizeof($option); $i++) {
if ($i != 0)
$message .= ",";
$message .= $option[$i];
}
}
// Fill in with your information
mail($to, $subject, $message, $headers);
echo "
<form action=test.php method=post>
<input type=checkbox name=option[] value=\"Apple\">Apple<br>
<input type=checkbox name=option[] value=\"Orange\">Orange<br>
<input type=checkbox name=option[] value=\"Pear\">Pear<br>
<input type=hidden name=fruits value=1>
<input type=submit value=\"Send Email\">
</form>
";
?>
Hope this helps.
MikeJ