Help for this page

Select Code to Download


  1. or download this
    [jeffa@neo cgi-bin]$ perl -c val.cgi 
    Global symbol "$template" requires explicit package name on line 51
    ...
    Global symbol "%shorthand" requires explicit package name on line 71
    Global symbol "$startingcat" requires explicit package name on line 71
    val.cgi had compilation errors.
    
  2. or download this
    (name this 'params.tmpl')
    
    ...
    <TMPL_ELSE>
       No params!
    </TMPL_IF>
    
  3. or download this
    use CGI qw(:standard);
    use HTML::Template;
    ...
    
    print header, start_html('Form Param Display'), 
       $template->output, end_html;
    
  4. or download this
    http://localhost/cgi-bin/params.cgi?foo=bar&qux=baz&foo=bar2
    
    http://localhost/cgi-bin/params.cgi