vote up 2 vote down star
1

Not only easy ones like .com or .net, but also, .co.uk, .fr, .gov.rw ... ?

Should I really make a huge mapping "tld to relevant whois server", or is there an easier way ?

Thanks!

flag

3 Answers

vote up 3 vote down

http://whois.net/ any good?

link|flag
It's far from complete :( Doesn't even have UK tlds... – BraveSirFoobar Jan 20 at 11:04
vote up 0 vote down

You may have to try different services:

This one seems to work for a lot more than the standard Whois: http://whois.domaintools.com/

Works for .co.uk and .fr as well as the standard ones

link|flag
vote up 2 vote down

php

$URL = "http://www.dotnetindex.com/articles/5261-Article--AJAX-Tips-and-Tricks.asp";

$PARSED_URL = parse_url($URL);

$DOMAIN = $PARSED_URL['host'];

$ip = gethostbyname($DOMAIN);

if($ip===$DOMAIN)

{ echo "Url does not exist"; }

else { echo "Url exists"; }

link|flag
Not a good check, for example example.org may not point to an IP but www.example.org may point to a valid IP (example.org may only have NS and MX records). – Kurt Jan 24 at 11:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.