UberCMS Users online variable?

Mitchul

Sledmoresux
Feb 18, 2012
371
46
Do you mean this?

PHP:
<?php
 
require_once "global.php";
 
if (!LOGGED_IN)
{
    header("Location: ./index.html");
    exit;
}
 
echo '<b>The following users are currently online:</b>';
 
$getUsers = dbquery("SELECT id FROM users WHERE online = '1' ORDER BY activity_points_lastupdate DESC");
 
if (mysql_num_rows($getUsers) > 0)
{
    echo '<ul style="margin: 0;">';
   
    while ($u = mysql_fetch_assoc($getUsers))
    {
        echo '<li style="margin-left: 20px;">';
        echo $users->formatUsername($u['id']);
        echo '</li>';
    }
   
    echo '</ul>';
}
else
{
    echo '<br /><br /><i>There are currently no users online.</i>';
}
 
?>
 

Users who are viewing this thread

Top