in reply to Re^3: CGI Action call
in thread CGI Action call
My undestanding:
my $a = shift; 1st item my $b = shift; 2nd item (if exits etc since it was bumped up to top by + pervious shift. my ($a, $b) = @_; my $a = $query->param('a'); my $b = $query->param('b');
These are all the same.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: CGI Action call
by Corion (Patriarch) on Mar 12, 2018 at 21:09 UTC | |
by tultalk (Monk) on Mar 12, 2018 at 22:12 UTC |