Dynamic banner display of online or offline for MC server

This commit is contained in:
alopexc0de 2012-10-16 20:26:27 -04:00
parent f26d324500
commit fbe4790e14
1 changed files with 24 additions and 0 deletions

24
mcimage.php Normal file
View File

@ -0,0 +1,24 @@
<?php
include('testserver.php');
$my_img = ''; // name of image
$status = ''; // server status returned by testserver.php
$ip = 'mc.unps-gama.tk';
$port = '36565';
//pick image online or offline
$status = GetServerStatus($ip, $port);
if ($status=="ONLINE"){
$my_img = imagecreatefrompng("mcbanner-online.png");
}else{
if ($status=="OFFLINE"){
$my_img = imagecreatefrompng("mcbanner-offline.png");
}else{
echo "Something really strange happened... Can't explain it.\r\nTry reloading this page";
}
}
//show image
header("Content-type: image/png");
imagepng($my_img);
imagedestroy($my_img);
?>