Help for this page

Select Code to Download


  1. or download this
    use CGI;
    my $q = new CGI qw(param);
    ...
    $ perl test.pl
    $q->param(keywords) = param
    Undefined subroutine &main::param called at - line 4.
    
  2. or download this
    sub AUTOLOAD {
      my $func = $AUTOLOAD;
    ...
    
      $self->{query}->$func(@_);
    }