
| #!/usr/local/bin/perl
read(STDIN, $input, $ENV{'CONTENT_LENGTH'}); @pairs = split(/&/, $input); foreach $pair (@pairs) { print "Content-type: text/html\n\n"; print <<HTMLBody; <HTML> <BODY bgColor="white"> <H1>Results from the Form</H1> Your name is $INPUT{name} and your email is $INPUT{email} </CENTER> HTMLBody |