<?php 
require_once "index.php";
$host = $ip;
$port = $port;

function onlineIndicator($host ,$port){ 
$online=false; 

$fp = @fsockopen($host, $port, $errno, $errstr, 1); 
if($fp) { 
$online=true; 
} 

if ($online){ 
return 'online'; 
} else { 
return 'offline'; 
} 
} 
 echo onlineIndicator($host,$port);
?>
