I have dynamic checkboxes under the array package[]
Say the person finally clicks the submit button,
How do I pass all the values to be sent thru the mail function?
<?
if ($send == "YES") {
foreach($_POST['package'] as $key=>$val) {
echo "$key = $val\n";
}
mail("email", "blah", $key);
?>