programming-examples/perl/CGI/Printing the Name Input Using the CGI Module.pl
2019-11-15 12:59:38 +01:00

22 lines
314 B
Perl

#!/usr/bin/perl -T
use strict;
use CGI qw/:standard/;
print header,
start_html('Hello'),
start_form,
"Enter your name: ",textfield('name'),
submit,
end_form,
hr;
if (param()) {
print "Hello ",
param('name'),
p;
}
print end_html;
exit;