Forum Moderators: coopster
<?php
$snacks = $_POST['snacks'];
// Note that $snacks will be an array.
foreach ($snacks as $s) {
echo "$s<br />";
}
?>
for the above example it would just output
Cola cola, popcorn and peanuts.
wouldnt it be easier to just write it in HTML