in reply to Re: use CGI
in thread making a hash from cgi parameters
with both $ENV{'QUERY_STRING'} as well as <STDIN> because when I mannually open a script w/ just query string.. it works fine, but when I have input comming from both query string and <STDIN> it gives me an internal server error.use CGI qw(:standard); my %data = map { $_ => param ($_) } param();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: use CGI
by swiftone (Curate) on May 25, 2001 at 00:03 UTC | |
by Anonymous Monk on May 25, 2001 at 00:06 UTC | |
by Ovid (Cardinal) on May 25, 2001 at 01:50 UTC | |
by swiftone (Curate) on May 25, 2001 at 02:03 UTC |