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