Hi,
I have a users table that gets updated with a users session id when they login to my website.
I then check the users table to see which users are currently online.
Is there a way to delete the session id from the users table if the users has been inactive after say 20 mins or if they have forgotton to logoff or have simply shut down their browser or PC?
Can this be done with PHP or JavaScript, should I add a timestamp for the last time the user did something and perhaps run a CRON job to delete users that have not done anything in the last 20 mins?
Thanks in advance for your feedback.