in reply to Re: Re: Re: Re: Re: session ID
in thread session ID
From the info you have provided, I don't see how you intend to use the session id, after you extract it.
It seems to me that you want to save user logon credentials and attributes. You don't need session ID's for that - just use session variables, such as :
# Set a session variable # $Session->Contents->SetProperty('Item', 'USERNAME', $userFromForm); # Access the Session USER variable # $user = $Session->Contents->Item('USERNAME');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Re: Re: Re: Re: session ID
by Anonymous Monk on Oct 08, 2003 at 22:11 UTC |