Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
<?
$adres = "IP на компа";
$port = "порта който ще проверяваш";
$fp = @fsockopen($adres, $port, $errno, $errstr, 3);
if (!$fp) {
echo '<font color="red">$adres - <b>Offline</b></font>';
}else{
echo '<font color="green">$adres - <b>OnLine</b></font>';
}
?>