How to check if a user is idle for 10 minutes or more using php?
Is it possible?
Each time users do something, update the timestamp for that user in the database. To find idle users, ask everyone whose timestamp is older than 10 minutes.
use a session variable, store the timestamp in it. For each request, update the timestamp.