battles/online_get_u_s.php

6 lines
198 B
PHP
Raw Normal View History

2018-01-28 16:40:49 +00:00
<?
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];
?>