#!C:\perl\bin\perl -w # Script: form1test.pl works with form1test.html use strict; use CGI ':standard'; my $value; $value = param('yourname'); print "content-type: text/html\n\n"; print "The name you entered is $value";