Code:

session_cache_expire(0);
session_cache_limiter('private');
session_start();

I use this at the beginning of my script that processes data objects for my
users.  The users use multiple machines and login to the web site.  This
prevents the cached information from one user popping up when another user
logs in.  Will this contribute to the solution for my main problem:

When a user exits a window without logging out they have to wait until the
cookie expires or the session file in /tmp is deleted before they can get
back in.  This is the code that executes at login:

            session_cache_expire(0);
            session_cache_limiter('private');
            setcookie("cookie","",0,"/","iffinet.com",1);
            session_start();

I was hoping this would cause the session file in /tmp to be deleted but it
doesnıt work.  I also tried unset($_SESSION[Œidı]) this doesnıt work either.
Anyone have any ideas as to how I can resolve this?

Thanks for your help!

/Tim

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to