Help for this page
#!/usr/bin/perl open(HTMLFILE, ">your/html/file.here"); ... #....do some other things if necessary print "So does this\n"; close HTMLFILE;
#!/usr/bin/perl open(HTMLFILE, ">your/html/file.here"); ... #....do some other things if necessary print HTMLFILE "So does this\n"; close HTMLFILE;