1
hello, I'm working on a new module. I always need to know in real time what users are logged on the site.
I saw that there is a table online but I have two questions:
1. how often is updated?
2. how do I retrieve the list of users online?
@ this moment my code is
$sql = "SELECT s.*, t.* FROM ".$xoopsDB->prefix('online')." s, ".$xoopsDB->prefix('users')." t WHERE t.uid = s.online_uid ORDER BY s.online_updated DESC";
$result = $xoopsDB->query($sql);