in reply to CGI::Session - non-stop session creation problem
How do you determine someone is logged in or not?
if ($sid) { $session = CGI::Session->new(undef, $sid, {Directory => 'c:/apache/s +essions'}); if (! logged_in($session)) { $session->delete(); } }
Or something like that.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: CGI::Session - non-stop session creation problem
by Stenyj (Beadle) on Apr 06, 2005 at 04:06 UTC | |
by Tanktalus (Canon) on Apr 06, 2005 at 04:13 UTC |