battles/online_get_u_s.php

6 lines
198 B
PHP

<?
include "functions.php";
include "config.php";
$online = mysql_fetch_row(mysql_query("select count(id) from `online` WHERE `real_time` >= ".(time()-60).";"));
echo $online[0];
?>