Re: variable in cgi param
- From: jm5379@xxxxxxxxx (Jm)
- Date: Mon, 23 Jul 2007 09:26:24 -0500
i have used this, just to display all param()s and verify the data
being passed. i'm thinking someone showed me a newer version for
looking at multiple values for checkboxes, etc. but i'm not sure and i
don't have more recent code available to verify.
hope this helps
#############
foreach my $param (param())
{
my $value = param($param);
$message .= "param \"$param\" = \"$value\" <br />";
}
#############
On 7/23/07, ubergoonz <ubergoonz@xxxxxxxxx> wrote:
Hi,
I am trying to parse a param in cgi script.
basically how can i make use of a for loop to parse the variables, from the
url
http://someplace/cgi-bin/script.cgi?ip1=xxx.xxx.xxx.xxx&hn1=blah&ip2=xxx.xxx.xxx.xxx&hn2=blah&ip3=xxx.xxx.xxx.xxx&hn3=blah&totalkey=3
for ($1=1; $i <= $cgi->param('totalkey') ; $i++) {
print "<li>$i - $cgi->param('ip$i') cgi->param('hn$i') ";
}
but output seems to be HASHblah ...
--
ubergoonz
--
since this is a gmail account, please verify the mailing list is
included in the reply to addresses
.
- References:
- variable in cgi param
- From: Ubergoonz
- variable in cgi param
- Prev by Date: GetOptions argument given multiple times
- Next by Date: Re: variable in cgi param
- Previous by thread: variable in cgi param
- Next by thread: Re: variable in cgi param
- Index(es):
Relevant Pages
|