in reply to Re: Re: Re: Using CGI param method
in thread Using CGI param method
Just trying to clarify what the use CGI qw(:standard) module is doing? It already assigned an object for param so I can reference it above? I am just curious to what is going on in the above area??use strict; use CGI qw(:standard); sub parse_form { foreach $p (param()) { $FORM{$p}= param($p); } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Using CGI param method
by sgifford (Prior) on Apr 21, 2004 at 15:12 UTC |