adrive has asked for the wisdom of the Perl Monks concerning the following question:
Is there a way to add my own keys to the SIMILIAR group and how do i access it? such as :$cgi->append("hisname", "alex"); $cgi->append("hisname", "alex2"); #to access my $names = $cgi->param("hisname"); #stores a list of "hisname" foreach ($names){ print $_; #outputs alex, alex2 }
$cgi->append("hisname" => "alex", "description" => "quite bold"); $cgi->append("hisname", "alex2", "description" => "healthy");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: need cgi param's help
by NetWallah (Canon) on Sep 17, 2007 at 05:24 UTC | |
|
Re: need cgi param's help
by adrive (Scribe) on Sep 17, 2007 at 06:00 UTC | |
by NetWallah (Canon) on Sep 18, 2007 at 00:45 UTC |