Help for this page

Select Code to Download


  1. or download this
    my $rpt_name = $CGI->param('rpt_name');
    my $rpt_descr = $CGI->param('rpt_descr');
    #etc., etc.
    
  2. or download this
    foreach my $name ( $CGI->param() ) {
       my $value = $CGI->param($name);
       print "The value of $name is $value<br>";
       }
    
  3. or download this
    $CGI->import_names('R');
    #other stuff
    ...
                                       );
    #other stuff
    print $tmpl_main2->output();
    
  4. or download this
    #!/usr/bin/perl
    use CGI ':standard';
    print header();
    print param('key');
    
  5. or download this
    @names = $CGI->param;
    
  6. or download this
    $tmpl_main1->param(passCGI   => \@names);