I've had the same problem. There's a mistake in the Eagle book when it
states that $r->the_request() eq join(' ', $r->method, $r->uri,
$r->protocol).

Proper way to access fragment as well as query_string is to use
my $uri = $r->parsed_uri();
my $fragment = $uri->fragment();

Andrei

On Mon, Nov 29, 1999 at 10:04:24AM -0800, brian moseley wrote:
> 
> im requesting the url
> 
>   http://www.maz.org/foo/index.html#perl
> 
> it appears that neither $r->uri nor $r->parsed_uri retain
> any knowledge of the fragment. they both return
> 
>   /foo/index.html
> 
> is there any way for me to retrieve the fragment info short
> of parsing $r->the_request?
> 

-- 

Reply via email to