Parse error: parse error, unexpected T_STRING in D:\doc1\Ping.php on line 2
Fatal error: Undefined class name 'net_ping' in D:\doc1\index2.php on line 36
:: --> Ping.php
<?
void Net_Ping::Net_Ping ('172.21.0.1');
?>
:: --> Index2.php
<?
require_once ('Ping.php');
$domain = 'ich.de';
$ping = Net_Ping::factory();
if(!PEAR::isError($ping)){
$ping->setArgs(array('count' => 1));
$result = $ping->ping($domain);
if (isset($result->message)) print $domain.' erreichbar';
}
?>
Ähm... wenn ich der Anleitung folge kommt hja das dabei raus, aber warum gehts dann ned, wenn´s in der Anleitung so steht :-(
Michimu