in reply to get and post request methods
In case of GET, the parameters and their values are passed as environment variables to the CGI program in charge. In case of post, the parameters and values (i.e. the content body) are passed into the CGI program in charge via file handle 0 (STDIN). It can be retrieved with the standard mechanisms to read from STDIN:
my $content_body = do { local $/; <> };
But you shouldn't do that yourself. The perl core module CGI handles that for you.
|
|---|