![]() |
sponsored links |
|
|
sponsored links
|
|
|
2
8th April 13:25
External User
Posts: 1
|
Take a look into session_set_save_handler:
http://us2.php.net/manual/en/function.session-set-save-handler.php You may find something that will save you a lot of time. -- Justin Koivisto, ZCE - justin@koivi.com http://koivi.com |
|
|
4
11th April 17:39
External User
Posts: 1
|
There will, of course, be three separate session data structures, and three
separate instances of $_SESSION['x']. That is the entire point of using sessions -- to distinguish between different users. Well, sort of; *every* CGI request, regardless of the language, starts up a new process. When the request has been handled, the process ends (usually). The session stuff has to be put in a store somewhere so that it does not evaporate. No. -- - Tim Roberts, timr@probo.com Providenza & Boekelheide, Inc. |
|
|