# Name this Perl script as test.pl use warnings; use strict; use CGI qw( :standard ); our ( $name, $value ) = split( '=', $ENV{ QUERY_STRING } ); print header(), start_html( 'Using GET with forms' ); print p( 'Enter one of your favorite words here: ' ); print '
'; print ''; print ''; print '
'; if ( $name eq 'word' ) { print p( 'Your word is: ', b( $value ) ); } print end_html();