It looks like you're new here. If you want to get involved, click one of these buttons!
#!C:/Perl64/bin/Perl.exe -w
# CGI Example1
use CGI;
print \"Content-Type: text/html\n\n\";
print <<\"EOF\";
<HTML>
<HEAD>
<TITLE>Hello, world!</TITLE>
</HEAD>
<BODY>
<h1>Hello, world!</h1>
<hr>
<p>This is a crappy example for you guys :P</p>
<hr>
</BODY>
</HTML>
EOF