Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    
    print "Content-type: text/html\n\n";
    print "<HTML><HEAD><TITLE>Title Page</TITLE></HEAD>\n";
    print "<CENTER><FONT SIZE=+7>Some text here</FONT></CENTER></HTML>\n";
    
  2. or download this
    !#/usr/bin/perl
    use CGI;
    ...
    
    print $q->header;
    print $q->start_html("Title Page");