I'm developing a site that it has a capability to do a domain check availability... Just like when you purchase a domain in a any web hosting company.... Can you share a script of it.?

check domain availability!
I don't know where you would find a script but I am sure there would be one out there.
If not you could find a site that uses get data to check if they are available and then use that to get the information:
If not you could find a site that uses get data to check if they are available and then use that to get the information:
| Code: |
|
$domain = $_GET['domain']; $available = file("http://www.domainchecker.com?domain=$domain"); //Then find the line that it says available or not available and do this echo "The domain $domain is" . $available[5]; |
