Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -l
    
    ...
        $cgi->div({-id => 'pagewrap'}, "Hello"),
        $cgi->end_html();
    }
    
  2. or download this
    #!/usr/bin/perl -l
    
    ...
      my $cgi = CGI->new;
      print header, start_html, div({-id=>'pagewrap'}, "Hello"), end_html;
    }