Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Passing Variables in CGI

by davorg (Chancellor)
on Jul 24, 2000 at 18:34 UTC ( [id://24073]=note: print w/replies, xml ) Need Help??


in reply to Passing Variables in CGI

To pass data via a URL you would use something like this:

http://not.dave.org.uk/cgi-bin/script.pl?key1=val1&key2=val2

The parameters are appended to the end of the URL following a question mark (?). Parameters are arranged in key/value pairs where key and value are separated by an equals sign (=). Each pair is spearated from the next with an ampersand (&). Note that certain characters (including ?, = and & for obvious reasons) cannot be used in a URL and must therefore be encoded.

Within the CGI program, extracting the parameters is very easy as long as you use CGI.pm. Not using CGI.pm is dangerous as CGI parameter extraction is a tricky business and very easy to get wrong. Using CGI.pm, you can just write code like this:

#!/usr/bin/perl -w use strict; use CGI qw(:standard); print header(-type => 'text/plain'); foreach (param) { print "Parameter $_ is ", param($), "\n"; }

Note that it is perfectly legal to have multi-valued CGI parameters, like this:

key1=val1&key2=val2a&key2=val2b

In this case the param function will return a list when asked for parameter key2. In this case the sample code above will break.

Get more info on this from perldoc CGI or Lincoln Stein's book The Official Guide to Programming with CGI.pm.

--
<http://www.dave.org.uk>

European Perl Conference - Sept 22/24 2000, ICA, London
<http://www.yapc.org/Europe/>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (4)
As of 2024-04-25 15:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found