Hallo,
ich habe jetzt eine Whois-Abfrage programmiert und ich möchte, dass wenn die Domain schon belegt ist das das auch angezeigt wird!
Hier ist mein Code:
Nun wird folgendes bei der Domain php-resource.de ausgegeben:
GeekTools Whois Proxy v5.0a7 Ready. Checking access for 217.231.220.162... ok. Checking server [whois.denic.de] Results: % Copyright (c)2002 by DENIC % % Restricted rights. % % % Except for agreed Internet operational purposes, no part of this % information may be reproduced, stored in a retrieval system, or % transmitted, in any form or by any means, electronic, mechanical, % recording, or otherwise, without prior permission of the DENIC % on behalf of itself and/or the copyright holders. Any use of this % material to target advertising or similar activities are explicitly % forbidden and will be prosecuted. The DENIC requests to be notified % of any such activities or suspicions thereof. domain: php-resource.de descr: Bernhard Bauder descr: Leipziger Str. 36 descr: D-63329 Egelsbach descr: Germany nserver: ns.routing.net nserver: ns8.routing.net status: connect changed: 20020920 112619 source: DENIC [admin-c][tech-c][zone-c] Type: PERSON Name: Bernhard, Bauder Address: Leipziger Str. 36 City: Egelsbach Pcode: 63329 Country: DE Phone: +49 6103 481868 Fax: +49 6103 481870 Email: bbauder@it-development.de Changed: 20020916 173601 Source: DENIC Results brought to you by the GeekTools WHOIS Proxy Server results may be copyrighted and are used with permission. Your host (217.231.220.162) has visited 15 times today.
php-resource.de
Wie man erkennen kann ist die Domain regestriert, aber ich möchte, dass angezeigt wird:
Diese Domain ist bereits vergeben!
Und das wenn die Domain noch frei ist angezeigt wird:
Diese Domain ist noch verfügbar!
Hat jemand eine Idee wie man das machen kann?
ich habe jetzt eine Whois-Abfrage programmiert und ich möchte, dass wenn die Domain schon belegt ist das das auch angezeigt wird!
Hier ist mein Code:
PHP-Code:
$domain="php-resource.de";
$fp=fsockopen("whois.geektools.com", 43, &$errno, &$errstr, 30);
if (!$fp){
echo "Whois-Server nicht verfügbar";
} else {
$domain .= "\n";
fputs($fp, $domain);
$data=fread($fp, 16384 );
fclose($fp);
echo "$data";
}
GeekTools Whois Proxy v5.0a7 Ready. Checking access for 217.231.220.162... ok. Checking server [whois.denic.de] Results: % Copyright (c)2002 by DENIC % % Restricted rights. % % % Except for agreed Internet operational purposes, no part of this % information may be reproduced, stored in a retrieval system, or % transmitted, in any form or by any means, electronic, mechanical, % recording, or otherwise, without prior permission of the DENIC % on behalf of itself and/or the copyright holders. Any use of this % material to target advertising or similar activities are explicitly % forbidden and will be prosecuted. The DENIC requests to be notified % of any such activities or suspicions thereof. domain: php-resource.de descr: Bernhard Bauder descr: Leipziger Str. 36 descr: D-63329 Egelsbach descr: Germany nserver: ns.routing.net nserver: ns8.routing.net status: connect changed: 20020920 112619 source: DENIC [admin-c][tech-c][zone-c] Type: PERSON Name: Bernhard, Bauder Address: Leipziger Str. 36 City: Egelsbach Pcode: 63329 Country: DE Phone: +49 6103 481868 Fax: +49 6103 481870 Email: bbauder@it-development.de Changed: 20020916 173601 Source: DENIC Results brought to you by the GeekTools WHOIS Proxy Server results may be copyrighted and are used with permission. Your host (217.231.220.162) has visited 15 times today.
php-resource.de
Wie man erkennen kann ist die Domain regestriert, aber ich möchte, dass angezeigt wird:
Diese Domain ist bereits vergeben!
Und das wenn die Domain noch frei ist angezeigt wird:
Diese Domain ist noch verfügbar!
Hat jemand eine Idee wie man das machen kann?
Kommentar