On Thu, 2003-07-31 at 15:44, Mark Deepak Puttnam wrote:
> sub handler {
> my $r=shift;
> my $env=$r->subprocess_env;
> %ENV=%$senv;
>
> my $referer=$ENV{'HTTP_REFERER'};
>
> xxxx
> xxxxx
>
>
> }
Come to think of it, you should just use the Apache API for this:
my $referer = $r->header_in("Referer");
- Perrin
