in reply to need cgi param's help
can it be..$query->append(-name=>'foo',-values=>['yet','more','values']);
? it looks like we can only assign to specific keys of "name" and "value" for the cgi's param unless we put them into hash objects. problem is..if i change the way my checkbox group stores it data into the cgi (let's say my own hash objects), i won't be able to access it through :$query->append(-name=>'foo',-values=>['yet','more','values'], -description=>'foos description');
if only there was a way like this :my @fooList = $cgi->param('foo');
$cgi->param('foo')->('description');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: need cgi param's help
by NetWallah (Canon) on Sep 18, 2007 at 00:45 UTC |