Re: [Phplib-users] Why are my User Sessions didnt deleted if i logout ???
Brought to you by:
nhruby,
richardarcher
From: Joe S. <jo...@be...> - 2002-09-13 11:31:03
|
Adding to the info Stewart provided - On Fri, Sep 13, 2002 at 11:11:58AM +0200, Benjamin Hoft wrote: > My problem is that my User Sessions named "Example_User" > won´t be deleted after I logout. > > And i soposed they should be deleted :( > Not necessarily. Logging out removes the authorization. It removes the auth object ( session variable) but doesn't remove the session. If you need to remove the session when logging out, call the session object's delete() method. I believe this may be needed if using the session4/phplib stuff. Joe |