On Fri, Oct 08, 1999 at 05:05:41PM +0200, Eric Cholet wrote:
> On Friday, October 08, 1999 3:35 PM, Andrei A. Voropaev
> > Well. I wish you have also mentioned how to unset $r->content()
> > because it reads content only once. Second time returns undef. The
>
> But you shoudn't be radubg $r->content for a GET, right?
>
Right :) You just missed the point. I want to read content
(using $r->content) to check what is being passed and then redirect
that same content to another handler. That new handler should be able
to read it from some place. I fool it to believe that method is get
not post, so it'll try to read $r->args. But it will also return empty
string.
So far the only way around it that I know is to chain handlers, and
not use internal redirect.
Andrei
--