Help for this page

Select Code to Download


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