Hi
looking for a script that will be shown to the server status page Mucore 1.0.8
Hi
looking for a script that will be shown to the server status page Mucore 1.0.8
Server on/off status?
use on whatever place you want by include .php file, just change ip / port
Code:<?php $GS1 = '127.0.0.1'; $GS1_P = '66666'; if ($lets_see = @fsockopen($GS1, $GS1_P, $ERROR_NO, $ERROR_STR, (float) 0.5)) { fclose($lets_see); echo 'We are online Boi !'; } else { echo 'We are offline Boi !'; } ?>