Código PHP:
<?php
$query1=mysql_query("SELECT * FROM servers");
while($rs1=mysql_fetch_array($query1))
{
@$estado = fsockopen($rs1["ip"], $rs1["puerto"], $errno, $errstr, 5);
if ($estado)
{
} else {
$tot++;
}
}
echo "tenemos ".$tot."linea";
?>