Help for this page

Select Code to Download


  1. or download this
    use CGI qw/:standard/;
    print header;
    
  2. or download this
    BEGIN {
        require CGI;
        CGI->import( ':standard' );
    }
    print header;
    
  3. or download this
    require CGI;
    CGI->import( ':standard' );
    print header;
    
  4. or download this
    Unquoted string "header" may clash with future reserved word at test.p
    +l line 12.
    Name "main::header" used only once: possible typo at test.pl line 12.
    print() on unopened filehandle header at test.pl line 12.