The Perl CGI construct to extract the information from the web
field we defined on the previous page would be:
# Now conditionally report what the user typed in previously.
# If this is not the first time into the script...
if ($query->param()) {
# Extract out whatever the contents of our field were.
my $textInput = $query->param(-name=>'TextfieldOne');
# Generate our output
print $query->hr();
print $query->p('The text you previously entered was:'), $query->br();
print $query->em({-align=>'center'}, $textInput);
print $query->hr();
}