Forum Moderators: coopster
I tried simply, copying all from '#*$!'; but that Web site is limiting 5-10 queries.
Instead of scraping web services you could ask the whois services (whois servers) directly.
This can be done by opening a network connection on port 43 to the appropriate whois server (using fsockopen() in PHP).
Of course, you first have to know and locate the appropriate whois server (there are many, each TLD has its on whois service ( [iana.org...] and in case of a .COM address you have to make 2 queries, one to a central server (crsnic.net/verisign, if I recall correctly), who knows which registry service holds the data for a specific domain and then another additional query to that registrar's whois service to get more specific data.).
To prevent abuse by automatic bots, some whois servers have implemented access restrictions on their services on port 43, too.
Good luck and regards,
R.
You don't need to know much about sockets. If you read the documentation at
[php.net...]
you may perhaps start with one of the examples presented there.
Regards,
R.