moprpg/stats.php

18 lines
290 B
PHP
Raw Permalink Normal View History

2017-10-22 18:15:11 -07:00
<?php
include("config.php");
$result = mysql_query("SELECT name,lastact FROM mrpg_users WHERE (" . date("U") . "-lastact)<=60");
2017-10-22 20:39:20 -07:00
while($row = mysql_fetch_array($result)) {
$online.=ucfirst($row['name']) . ", ";
2017-10-22 18:15:11 -07:00
}
if($online=="") {
2017-10-22 20:39:20 -07:00
echo "None!";
2017-10-22 18:15:11 -07:00
} else {
2017-10-22 20:39:20 -07:00
echo $online;
2017-10-22 18:15:11 -07:00
}
2017-10-22 20:39:20 -07:00
?>