Initial 2005 state

This commit is contained in:
2017-10-22 18:15:11 -07:00
commit bb1051e490
189 changed files with 3432 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
include("config.php");
$result = mysql_query("SELECT name,lastact FROM mrpg_users WHERE (" . date("U") . "-lastact)<=60");
while($row = mysql_fetch_array($result))
{
$online.=ucfirst($row['name']) . ", ";
}
if($online=="") {
echo "None!";
} else {
echo $online;
}
?>