info functions.lib.php >>>>
get_online_users()
get the array of current online users
--------------------------------------------------*/
function get_online_users() {
global $tbl_logs,$timeout_onl,$curr_gmt_time;
$onlUsers = array(); $o = 0;
$sql = "SELECT logid FROM ".$tbl_logs." "
. "WHERE t_reload > ".($curr_gmt_time-$timeout_onl);
$res = mysql_query($sql);
>>>1257 while ($row = mysql_fetch_array($res)) {