Help for this page

Select Code to Download


  1. or download this
    print $query->start_html(
        -title => 'Some title',
    ...
            -src => 'my_script.pl'
        }
    );
    
  2. or download this
    my $query = new CGI;
    print $query->header("text/plain");
    
    my $body = `lynx -dump some_url_here`;