sessionend

Session_End called multiple times in the middle of a session

Am I using Session_End incorrectly? In my application, I have a cache to speed up page loads, it works quite well. Recently, someone suggested to me that I was leaking memory by never emptying it out, and to implement a method on Session_End that will clear out any cache entries associated with that session id. Occasionally though I st...

Session_ONEnd on PHP

Hi guys, I have recently started programming in PHP. I am building a cart in PHP. I have my products locked in cart when someone adds it to their cart. I need to unlock those products when the specific user gets logoff or session expires. How can i call something like session_onend function as in asp/asp.net to unlock/release those ...