Jump to content

List of logged in users.


samtwilliams

Recommended Posts

when a user logs in, have a column in the users table named 'activity' (i'd store a unix timestamp) and each time a user visits a page include a script which will update this in the database and store the same value in the session.

if this value is less than say 10minutes ago, then the script should then ask them to log in again. that way you know all your users that are logged in are those with 'activity' values within the last 10minutes.

And then you can use javascript/ajax or jquery to call a refresh page every 5minutes which will refresh the 'activity' field in the database.

 

You can set these to shorter intervals, 2mins instead of 10 etc...

 

Just some food for thought

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.