Help for this page

Select Code to Download


  1. or download this
    my $q = CGI->new;
    show_name();
    ...
    sub show_name {
        print $q->param('name');
    }
    
  2. or download this
    my $q = CGI->new;
    show_name($q);
    ...
        my $q = shift;
        print $q->param('name');
    }