GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
HTTP::Request::Params(3) User Contributed Perl Documentation HTTP::Request::Params(3)

HTTP::Request::Params - Retrieve GET/POST Parameters from HTTP Requests

  use HTTP::Request::Params;
  
  my $http_request = read_request();
  my $parse_params = HTTP::Request::Params->new({
                       req => $http_request,
                     });
  my $params       = $parse_params->params;

This software does all the dirty work of parsing HTTP Requests to find incoming query parameters.

  my $parser = HTTP::Request::Params->new({
                  req => $http_request,
               });

"req" - This required argument is either an "HTTP::Request" object or a string containing an entier HTTP Request.

Incoming query parameters come from two places. The first place is the "query" portion of the URL. Second is the content portion of an HTTP request as is the case when parsing a POST request, for example.

  my $params = $parser->params;

Returns a hash reference containing all the parameters. The keys in this hash are the names of the parameters. Values are the values associated with those parameters in the incoming query. For parameters with multiple values, the value in this hash will be a list reference. This is the same behaviour as the "CGI" module's "Vars()" function.

  my $req_object = $parser->req;

Returns the "HTTP::Request" object.

  my $mime_object = $parser->mime;

Returns the "Email::MIME" object.

Now, you may be wondering why we're dealing with an "Email::MIME" object. The answer is simple. It's an amazing parser for MIME compliant messages, and RFC 822 compliant messages. When parsing incoming POST data, especially file uploads, "Email::MIME" is the perfect fit. It's fast and light.

"HTTP::Daemon", HTTP::Request, Email::MIME, CGI, perl.

Casey West, <casey@geeknest.com>. Ian Stuart, <Ian.Stuart@ed.ac.uk>.

  Copyright (c) 2015 Casey West.  All rights reserved.
  This module is free software; you can redistribute it and/or modify it
  under the same terms as Perl itself.
2015-08-11 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.