#!/usr/bin/perl use CGI; $q = new CGI; print $q->header; print $q->start_html("Results"); print $q->h2("Results"); print "Here's what you entered:

\n"; print "Your Name: ", $q->param("name"),$q->br; print "Email: ", $q->param("email"),$q->br; print "Age: ", $q->param("age"),$q->br; print "Favorite Color: ", $q->param("favorite_color"),$q->br; print $q->end_html;