here my script but dont work for me:
<html>
<head>
<title>status</title>
<link rel="stylesheet" type="text/css" href="body.css">
<style>
BODY {
background-attachment: fixed;
}
</style>
</head>
<body background="img/background_10.gif" leftmargin="5" topmargin="5" marginwidth="5" marginheight="5">
<?php
$fp = @fsockopen('ip', 43594, $errno, $errstr, 2);
if ($fp) {
$main = '<font color="green">Online</font>';
} else{
$main = '<font color="red">Offline</font>';
}
</body>
</html>