> > or check out Apache::RequestNotes/
>
>
> you'll also want to check out using Apache::Request->instance() over
> Apache::Request->new()
That is indeed the three second code fix that I implemented.
> or check out Apache::RequestNotes/
you'll also want to check out using Apache::Request->instance() over
Apache::Request->new()
HTH
--Geoff
TED]]
> Sent: 05 July 2002 15:57
> To: modperl
> Subject: Re: Apache::Request $apr->param; problems.
>
>
> * Wes Cravens <[EMAIL PROTECTED]> [2002-07-05 10:48]:
> > however if this routine is called more than once with the same $r
> > object then the second
* Wes Cravens <[EMAIL PROTECTED]> [2002-07-05 10:48]:
> however if this routine is called more than once with the same $r
> object then the second time there are no params. It's as if calling
> $apr->param strips them off $r. That's not clever. I can't find
> anything in the documentation that
I have a subrouting which returns references to
%r_info, %r_headers_hash and @r_headers_list.
Part of %r_info is params from Apache::Request opbject $arq.
my %params;
foreach ($apr->param) {
$params{$_} = $apr->param{$_);
}
$r_info{'params'} = \%params,
however if this routine is called