Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> Status Serwera, Jak zrobić Status Serwera
MnicH.
post 23.02.2007, 19:50:55
Post #1





Grupa: Zarejestrowani
Postów: 134
Pomógł: 4
Dołączył: 16.02.2007
Skąd: Leszno

Ostrzeżenie: (20%)
X----


blink.gif tongue.gif Witam.
Mam sprawe.
Jak mam na stronce zrobić opcje Status Serwera.
Do gry Serwera OTS (tibia 7.6)questionmark.gifquestionmark.gifquestionmark.gifquestionmark.gifquestionmark.gifquestionmark.gif party.gif
Z góry THX biggrin.gif biggrin.gif


--------------------
"This isn't Miami..., This isn't Music! This is power!!"
Go to the top of the page
+Quote Post
 
Start new topic
Odpowiedzi (1 - 2)
pomek
post 23.02.2007, 20:43:33
Post #2





Grupa: Zarejestrowani
Postów: 19
Pomógł: 0
Dołączył: 29.09.2006
Skąd: Bytom

Ostrzeżenie: (0%)
-----


  1. <?php
  2. $language = array(
  3. 'serveronline' => 'Aktualnie serwer jest <b style="color: orange">Online</b>.', // gdy serwer On
  4. 'serveroffline' => 'Aktualnie serwer jest <b style="color: darkblue;">Offline</b>.', // gry serwer Off
  5. );
  6. $timeout = 1;
  7.  
  8. $server = array(
  9. 'check' => true,  // Czy mamy sprawdzać status serwera,uzywac true/false
  10. 'ip' => '***',  // IP sprawdzanego serwera
  11. 'port' => 80, // Port sprawdzanego serwera
  12. );
  13.  
  14. $output = "";
  15.  
  16. if ($server['check']) {
  17. if ($fp = @fsockopen($server['ip'], $server['port'], $errno, $errstr, $timeout)) {
  18. fclose($fp);
  19. $serveronline = true;
  20. $output .= "<p>n";
  21. $output .= " ".$language['serveronline']."n";
  22. $output .= "</p>n";
  23. } else {
  24. $serveronline = false;
  25. $output .= "<p>n";
  26. $output .= " ".$language['serveroffline']."n";
  27. $output .= "</p>n";
  28. }
  29. }
  30. echo $output;
  31. ?>


--------------------
HomePage | Mój Blog | Klimek Team
Go to the top of the page
+Quote Post
MnicH.
post 24.02.2007, 15:22:51
Post #3





Grupa: Zarejestrowani
Postów: 134
Pomógł: 4
Dołączył: 16.02.2007
Skąd: Leszno

Ostrzeżenie: (20%)
X----


Wielkie PODZIEKOWANIA


--------------------
"This isn't Miami..., This isn't Music! This is power!!"
Go to the top of the page
+Quote Post

Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Wersja Lo-Fi Aktualny czas: 29.06.2025 - 19:12