Thema
:
[PHP] Überprüfen ob eine best. URL erreichbar ist
Einzelnen Beitrag anzeigen
abc newbee
(Gast)
n/a Beiträge
#
4
Re: [PHP] Überprüfen ob eine best. URL erreichbar ist
7. Apr 2007, 14:05
So... das Problem ist gelöst...
So gehts:
markieren
Code:
<?php
$online = @fsockopen("www.meineurl.de", 80, $errno, $errstr, 30);
if ($online==true)
{
Header("Location: online.html");
}
else
{
Header("Location: offline.html");
}
?>
Man braucht noch ein "@"
Zitat