Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Best way to parse CGI params

by Caillte (Friar)
on Feb 15, 2002 at 11:15 UTC ( [id://145663]=note: print w/replies, xml ) Need Help??


in reply to Best way to parse CGI params

Friar II - Son of Friar

Why iterate?

my %vars = $cgi->Vars();

This page is intentionally left justified.

Replies are listed 'Best First'.
Re: Re: Best way to parse CGI params
by rob_au (Abbot) on Feb 15, 2002 at 11:43 UTC
    You know, that strangely looks like the saint way of doing things :-)

    Although, if you really want to talk uber-demi-God way of doing things, look into the source of CGI.pm and look at the way Lincoln D. Stein has implemented the backward-compatible (with Steve Brenner's cgi-lib.pl) method of Vars with surprisingly little code ...

    sub Vars { my $q = shift; my %in; tie(%in,CGI,$q); return %in if wantarray; return \%in; }

     

    perl -e 's&&rob@cowsnet.com.au&&&split/[@.]/&&s&.com.&_&&&print'

Log In?
Username:
Password:

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

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

    No recent polls found