You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by ktgoh <kt...@newstakes.com> on 2001/05/18 05:34:44 UTC

Appending Session ID behind URL

Hi all:
I have a textbox in the HTML page which allows users to enter url.
After the user click submit, i append the sessionid at the tail of the url.

My qn is.
how do i append all the links for that page with the sessionid.

In my Apache module

sub handler{

     $r = shift;
     $query = $r->uri;
}

i notice the first time i manage to get the sessionid from the $query, after that the value is lost due to the many request that comes in.
How do i append the session ID to all the url before the response is sent out to the client.



Thanks
All help appreciated
Firestar