Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Re: map, grep, for, foreach

by Kanji (Parson)
on Jun 06, 2002 at 11:51 UTC ( [id://172156]=note: print w/replies, xml ) Need Help??


in reply to Re: map, grep, for, foreach
in thread map, grep, for, foreach

How about even more simply and efficiently using methods provided by CGI.pm ...
my %input = CGI::Vars;

While it works, Vars was really intended for compatability with the old cgi-lib.pl library, and so such shares the same quirks, like null (\0) seperated values for any multi-valued parameters.

Instead, I'd use CGI's Dump method...

Dumping Out All The Name/Value Pairs

The Dump() method produces a string consisting of all the query's name/value pairs formatted nicely as a nested list. This is useful for debugging purposes:

   print $query->Dump

Produces something that looks like this:

   <UL>
   <LI>name1
       <UL>
       <LI>value1
       <LI>value2
       </UL>
   <LI>name2
       <UL>
       <LI>value1
       </UL>
   </UL>

    --k.


Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://172156]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-24 22:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found