quote:
Originally posted by Jarrod
didn't fix anything
are you sure you have:
code:
<?
$ip = "247.212.233.220"; // IP Here
$port = 8000; // Port Here
if(fsockopen($ip, $port, $errno, $errstr, 10)) {
echo "The server is <font color='green'>Online</font>!";
} else {
echo "The server is <font color='red'>Offline</font>!<br/>";
echo "Returned error: ".$errstr." (code ".$errno.")";
}
?>
because i just tested it on my localhost and it says that its online =\