in reply to Re: Re: Re: Debugging when using Apache-request;
in thread Debugging when using Apache-request;

ahh, yep I was trying to write an accelerated cgi with Apache::Registry... Since then I spoke to the code guru where I used to work and he told me I should use Apache::Request.


so I swapped it to:
my $r = Apache->request;
my $apr = Apache::Request->new($r);

$apr->param('node'); etc. which he said was better.

thanks for the help though... what you said did make sense and I did take it in.
  • Comment on Re: Re: Re: Re: Debugging when using Apache-request;