Enter your name:
------------------------------------------- #!/usr/bin/perl # Perl script to process the form above, and dynamically generate some # html elements use strict; # -- import only those functions related to processing cgi requests and # generating HTML use CGI qw( :cgi :html ); # -- create a new instance of the CGI object my $cgi = new CGI; # -- output a message to the user print header, start_html('Example 2: Results'), "Your name is:", param('name'), br, "Your email address is:", param('email'), p, end_html;