mirror of
https://github.com/c0de-archive/GAMA-Site.git
synced 2024-12-22 09:42:39 +00:00
Dynamic banner display of online or offline for MC server
This commit is contained in:
parent
f26d324500
commit
fbe4790e14
24
mcimage.php
Normal file
24
mcimage.php
Normal 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);
|
||||
?>
|
Loading…
Reference in New Issue
Block a user