In your email body, you would do something like this:
PHP Code:
$body .= "Portrait Packages\n===========\n".implode("\n", (array) $_POST['package'])."\n\n";
$body .= "Additional Prints with Package Purchase\n===========\n".implode("\n", (array) $_POST['print'])."\n\n";
If you want to retrieve the individual check boxes, you can do print_r($_POST['package']) to see which were checked.
One thing I would recommend changing is the value="" to the human friendly version, like instead of
value="three_by_five" change it to value="Four 3x5's - $16.00"
Bookmarks