Help for this page

Select Code to Download


  1. or download this
    print <<"END_OF_HTML";  # double-quotes allows interpolation
    <html>
    ...
    </html>
    END_OF_HTML
    
  2. or download this
    use CGI qw(:standard);
    print header,
          h1($some_title),
          hr;
    # etc...