Help for this page

Select Code to Download


  1. or download this
    sub foo {
       return wantarray ? @_ : "@_";
    ...
    
    my @bar = foo(1, 2, 3); # @bar = (1, 2, 3);
    my $bar = foo(1, 2, 3); # $bar = "1 2 3"
    
  2. or download this
    my @tmp = $this->{'ApacheRequest'}->param( "checkbox_field");