Re: [PHP] Session Events

2002-06-26 Thread Al Baker
Well, since HTTP is stateless you can really say that this event happens in either of two places: - The next page accessed by the user with that session ID - As an event in the backend. If it's the first, I would recommend just having a lib_session that verifies a timer or whatever and then

[PHP] Session Events

2002-06-24 Thread Joe Krause
Is there anyway to have PHP execute a function or object method automatically when a session is expired? In JAVA, you can define an httpSessionBindingEvent which will notify an object when it is bound to or unbound from a session. This may be the result of a servlet programmer explicitly