Gibt es eine Ping Funktion für PHP womit ich ein Rechner anpingen kann und der mir bei positiver Meldung (online) einen Wert zurück gibt, und darstellt??
tia
oerbb
tia
oerbb
<?php
$command = "ping 192.168.1.109";
exec ( $command, $result );
echo "<pre>";
print_r($result);
echo "</pre>";
?>
EDIT:
bei windoof musst du -n nehmen.
Kommentar