Malcolm J Harwood wrote:
>
>> 1) Is the headers_in case sensitive? (content-length ne
>> Content-Length)?
>
> I believe so.
The APR::Table docs say that it is case-INsensitive.
Philip
On Thursday 28 September 2006 04:03, Erik Norgaard wrote:
(I don't recall seeing a response to this, apologies if I'm duplicating).
> I am using Apache 2.2 with mod_perl2. Reading the documentation I have
> found that I should get POST data using read():
>
>$r->read($buffer, $r->headers_in('c
Hi,
You should use libapreq2, which is a library that globally allows to deal
with data submitted by the client.
You can find documentation about it here:
http://search.cpan.org/~joesuf/libapreq2-2.08/glue/perl/lib/Apache2/Request.pm
Concerning CGI.pm, except if you are already using it for o
Tom Schindl wrote:
Please use one of the modules to read data:
- libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/)
- CGI.pm (comes with your perl-distro maybe you need to update it from
CPAN if you have an older perl)
Thanks! Apache2::Request is just what I need - I understa
On Thu, 28 Sep 2006 10:06:05 +0200, Tom Schindl wrote
> Hi,
>
> Please use one of the modules to read data:
> - libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/)
> - CGI.pm (comes with your perl-distro maybe you need to update it
> from CPAN if you have an older perl)
>
> Tom
>
Hi,
Please use one of the modules to read data:
- libapreq2 (http://search.cpan.org/~joesuf/libapreq2-2.08/)
- CGI.pm (comes with your perl-distro maybe you need to update it from
CPAN if you have an older perl)
Tom
Erik Norgaard schrieb:
> Hi:
>
> I am using Apache 2.2 with mod_perl2