Advertisement
Guest User

Untitled

a guest
Jan 16th, 2016
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. INDEX.PHP:
  2.  
  3. Game-Server: <?php
  4.  
  5. $server_host = "25.111.64.35";
  6. $server_port = 1337;
  7. $conn = @fsockopen($server_host, $server_port, $errno, $err_string, 10);
  8. if($conn === false) {
  9. // server offline
  10. echo '<font color="red">[OFFLINE]</FONT>';
  11. }
  12. else {
  13. // server online
  14. echo '<font color="green">[ONLINE]</FONT>';
  15.  
  16. if($wartung == 1)
  17. echo "Wartungsarbeiten";
  18. }
  19.  
  20. ?>
  21.  
  22.  
  23. --------------------------
  24.  
  25. CONFIG.PHP:
  26.  
  27. <?php
  28. $wartung ="1";
  29. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement