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.
<?php
// Подключаемся к серверу
$fsoc = fsockopen("proxy.salimobile.ru",80);
fputs($fsoc, "GET / HTTP/1.0\n\n");
while (!feof($fsoc))
{
$response=(fgets($fsoc,1000));
if (strstr($response,"Server: CCProxy"))
echo "работает :)";
}
// Отключаемся от сервера
fclose($fsoc);
?>
<?php
error_reporting(0);
$IP = array(
"<b><font color=#999999>Server:</font></b>" => "100.100.100.100:80",
);
echo "<table><tr>";
while(list($ServerName,$Host)=each($IP)) {
list($IPAddress,$Port)=explode(":",$Host);
echo "<td>$ServerName</td>";
if($fp=fsockopen($IPAddress,$Port,$ERROR_NO,$ERROR_STR,(float)0.5)) {
echo "<td><font color=lime><b>Online</b></font></td>";
fclose($fp);
}
else {
echo "<td><font color=#ff0000><b>Offline</b></td>";
}
echo "</tr>";
}
echo "</table>";
?>