so i'm writing something similar to a chat app and need a way to detect when a user is no longer active. essentially i need to let OTHER users of the app know that user X logged out if they left the page or closed their browser. Any way for a server-side script to figure this out aside from "i got no requests from user X in 15 mins so i'll assume he's out?"
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
Just as they said in the links in the comments you need to use AJAX. The easiest way to do this (in my opinion) is with JQuery, here is an example below:
Now in your sessioncheck.php file you'll want to do this
It's basic but it should do the trick! |
|||||||||||
|