- Joined
- Jan 12, 2004
- Messages
- 32
- Reaction score
- 0
Someone have a simply files web for online user, server status and ranking?
<?
/* Php Code */
$srvip = "CHANGEME";
$srvport = "CHNGME";
?>
<p>Srv_Name:
<?php
$fp = @fsockopen($srvip, $srvport, $errno, $errstr, 1);
if (!$fp) {
echo "<font style='color: #FF3300'><B>Offline</B></font></br>";
} else {
echo "<font style='color: #009933'><B>Online</B></font></br>";
fclose($fp);
} ?> </p>
Ranking would not be easy to make because all the information is stored in files and not in a database.