which search engine can I use in order to check ".com.au" domain name?

Status
Not open for further replies.

henry

New Member
Messages
26
Reaction score
0
Points
0
I want to check the availability of domain name through some third party's interface.
e.g. I want to check whether or not "myweb.com" is registered, I can realize this function in PHP as follows:
$searcgEngine = 'http://whois.hichina.com/cgi-bin/whois?domain=myweb.com&GO=GO';
$fp = file_get_contents($searchEngine,'rb');
if(strstr($fp,"no matching record") || strstr($fp,"No match for")) return true;
else return false;

in this case, I use "hichina.com" as search engine, but it can't handle ".com.au" or ".org" domain name.
which search engine can I use in order to handle ".com.au" domain name?
 

Chris Z

Active Member
Messages
5,603
Reaction score
0
Points
36
Derek, stop making useless posts. This guy's trying to build a search engine here!
 

Brandon

Former Senior Account Rep
Community Support
Messages
19,181
Reaction score
28
Points
48
Derek, last time I checked Google didn't offer domain registration services.
 
Status
Not open for further replies.
Top