in reply to Re: Selecting more than one option on form.
in thread Selecting more than one option on form.

Thanks but the output in my email is still one value. Here is how I am using param in my cgi:
use CGI qw(:standard); # bundle up form submissions into a mail_body $mail_body = ''; foreach $field (param) { foreach $value (param($field)) { $mail_body .= "$field: $value\n"; } } open (MAIL,"|$sendmail") || die "Can't open sendmail pipe: $!\n"; print MAIL <<"EOF"; To: You From: Me Subject: web data $mail_body EOF