programming-examples/perl/CGI/A Simple CGI Script.pl

10 lines
145 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!c:/ActivePerl/bin/perl.exe
$now=localtime;
$myname="AAA";
print <<EOF;
Content-type:text/html
<body>
<p>
Today is $now<br>
</body>
EOF