KSHYAMKUMAR has asked for the wisdom of the Perl Monks concerning the following question:
while going through the HTTP::Request::Common module in cpan http://search.cpan.org/~ether/HTTP-Message-6.11/lib/HTTP/Request/Common.pm i came across the below output for some scripts. Could someone guide me on how to see the output in the format provided in the page ??
Code
POST 'http://www.perl.org/survey.cgi', Content_Type => 'form-data', Content => [ name => 'Gisle Aas', email => 'gisle@aas.no', gender => 'M', born => '1964', init => ["$ENV{HOME}/.profile"], ]
Output
POST http://www.perl.org/survey.cgi Content-Length: 388 Content-Type: multipart/form-data; boundary="6G+f" --6G+f Content-Disposition: form-data; name="name" Gisle Aas --6G+f Content-Disposition: form-data; name="email" gisle@aas.no --6G+f Content-Disposition: form-data; name="gender"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HTTP::Request::Common output format.
by Your Mother (Archbishop) on Apr 14, 2016 at 20:20 UTC | |
by KSHYAMKUMAR (Acolyte) on Apr 14, 2016 at 20:59 UTC | |
by Your Mother (Archbishop) on Apr 14, 2016 at 21:50 UTC | |
by Your Mother (Archbishop) on Apr 14, 2016 at 21:32 UTC | |
by KSHYAMKUMAR (Acolyte) on Apr 14, 2016 at 21:53 UTC | |
by Your Mother (Archbishop) on Apr 15, 2016 at 00:21 UTC | |
|