RE: [Phplib-users] Why are my User Sessions didnt deleted if i lo gout ???
Brought to you by:
nhruby,
richardarcher
From: Taylor, S. <Ste...@uk...> - 2002-09-13 09:41:41
|
I think you are confusing how user session variables are designed to be used. A user session variable is associated with a user as long as they = exist. Every time a user logs back in their user session variables will be recreated. For example if you have a database application say to = create purchase orders, with fields such as department, telephone extension, = site. These fields are unlikely to change very often for a particular user. = So rather than the user entering these fields from scratch each time, you = can populate the fields from user session variables that store the users previous entries made in these fields. -Stewart -----Original Message----- From: Benjamin Hoft [mailto:ho...@eu...] Sent: 13 September 2002 10:12 To: 'php...@li...' Subject: [Phplib-users] Why are my User Sessions didnt deleted if i logout ??? My problem is that my User Sessions named "Example_User" won=B4t be deleted after I logout. And i soposed they should be deleted :( My "Example_Session" will be deleted from the garbage collector. Why ? any sugesstions ? i only see in my mysql logs something like this when the GC was started DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_Session' but nothing like=20 DELETE FROM active_sessions WHERE changed < '20020913110203' AND name = =3D 'Example_User' ??? Why ??? ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Phplib-users mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phplib-users |