Help for this page

Select Code to Download


  1. or download this
    <!DOCTYPE html>
    <html>
    ...
    
    </body>
    </html>
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    
    $template->process($file, $vars)
        or die "*MY* template process failed: ", $template->error(), "\n";
    
  3. or download this
    1proj/
    ---cgi-bin/
    ...
    
    2 directories, 8 files
    
  4. or download this
    #!/usr/bin/env perl
    use strict;
    ...
    $template->process($file, $vars)
        or die "*MY* template process failed: ", $template->error(), "\n";
    
  5. or download this
    http://localhost:8000/cgi-bin/create_form.pl
    
  6. or download this
    http://localhost:8000/cgi-bin/simple_cgi.pl
    
  7. or download this
    #!/usr/bin/env perl
    use strict;
    ...
          $cgi->start_html,
          $cgi->div('hello'),
          $cgi->end_html;