vote up -1 vote down star
1

How can I read the URL parameter in a Perl CGI program?

flag

come on now, couldnt google find the answer for this? – Petey B Jun 15 at 15:20
This demands a classic RTFM. – Svante Jun 15 at 17:46

2 Answers

vote up 8 vote down check

For GET requests, CGI parses the specified parameters and makes them available via the param() method. For POST requests, param() will return the parameters from the postdata, but any parameters specified via a query string in the URL itself are still available from the url_param() method. (This is can be helpful when a POST request is larger than $CGI::POST_MAX; in that case, CGI just discards the postdata, but you can arrange to have query string parameters that identify what kind of request it was to provide a good error message.) For ISINDEX style requests, the keywords requested are available via the keywords() method, as well as via param() in a faux "keywords" parameter.

Update: in case you meant something other than the parameters by "URL Parameter", the url() method provides all or parts of the requested URL; see OBTAINING THE SCRIPT'S URL.

link|flag
vote up 1 vote down

It's recommended that you use a URL parser such as mentioned by ysth, but if you REALLY want the raw input, it's available through the following:

for GET:

$contents = $ENV{'QUERY_STRING'};

for POST:

$contents = <STDIN>;
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.