Type the title here
Type the text here
Votez pour
mon serveur sur
McServ.org http://immortal-faction.forum-pro.fr/
php
function checkEtatServeur($serverIp, $serverPort='21')
{
$fp = @fsockopen($serverIp, $serverPort, $errno, $errstr, 1);
if($fp >= 1)
{
$serveur_etat = '
Online';
}
else
{
$serveur_etat = '
Offline';
}
return $serveur_etat;
}
?>
php echo checkEtatServeur('immortal.omgcraft.fr:10400', '21'); ?>