Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: How do I get at the parameters in my CGI program?

by howard40 (Beadle)
on Feb 27, 2000 at 08:10 UTC ( [id://4443]=note: print w/replies, xml ) Need Help??


in reply to How do I get at the parameters in my CGI program?

If the only thing you need to do is read in the submitted fields, i highly suggest you use Deurl.pm instead. It's smaller, faster, and (IMO) nicer to use. It is available on the authour's website http://Jenda.Krynicky.cz. Basically, the syntax is this, if you want to do it the simplest way possible
use Deurl; my %FORM = %Deurl::query;
but if you want to make it a little speedier, do this (the hash doesn't get copied, only aliased)
use Deurl; local (*FORM) = \%Deurl::query;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (6)
As of 2024-03-28 10:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found