|
Posted by seaside on 12/18/06 00:30
Sanders Kaufman schrieb:
> When you have a session going, I know that PHP stores a session
> token on the client, but does it keep the session *data* on the
> client, as well?
> Or is the session data being stored on the server, and just
> indexed to the session token data?
Only partly related, but probably helpful:
You can configure PHP to transparently inject your current session ID
in each and any URL, which you pass back as part of HTML code. If
correctly configured, PHP switches from cookie-based sessing ID storage
to auto-inject URL-based sessionID handling.
You need to compile PHP using --enable-trans-sid- set
[Back to original message]
|