Help for this page

Select Code to Download


  1. or download this
    print "Content-Type: text/html\n\n";
    print "<HTML>\n";
    ...
    print "<H5>Have a nice day</H5>\n";
    print "</BODY>\n";
    print "</HTML>\n";
    
  2. or download this
    print "Content-Type: text/html\n\n";
    open HTML, "c:/mypage.htm" or die $!;
    ...
    
    }
    close HTML;