simple.cgi

 


#!/usr/bin/perl

&mime;
print "<HTML><HEAD><title>A new page</title></HEAD><BODY>\n";
print "This page wholly created with CGI and Perl!";
print "</BODY></HTML>";

sub mime {
	print "Content-type: text/html\n\n";
}