"Christmas - the time to fix the computers of your loved ones" « Lord Wyrm

Online Status eines Servers Abfragen

X3ll 08.09.2004 - 15:37 664 1
Posts

X3ll

╰(*°▽°*)╯
Avatar
Registered: Mar 2002
Location: /dev/null
Posts: 1243
Hab eine Frage, wie kann ich den Online Status eines Servers abfragen. Bräuchte das für eine Homepage. Das hab ich versucht.

Code: PHP
<?php 
	  $ibmtc = "http://www.pc.ibm.com/europe/desktops/tourde/tcaseries/launch.html";
	  if(fopen($ibmtc['r'])) {
	  echo("Link Status: Aktiv");
	  } else {
	  echo("Link Status: Inaktiv");
	  } 
?>

murcielago

Dr. Doom
Avatar
Registered: Oct 2002
Location: *
Posts: 2689
warum $ibmtc['r'] ??, eher ($ibmtc, 'r'), oder?

und auf null abfragen, also

Code: PHP
if (fopen($ibmtc, r) != null) then ...

imho...
Bearbeitet von murcielago am 08.09.2004, 16:02
Kontakt | Unser Forum | Über overclockers.at | Impressum | Datenschutz