Hi, I want to find IP against a domain name and i also want to find other domains on a given IP? Is there any way i can do it with php? Thanks in advance. Regards,
You can do it with CURL .. so answer is yes, dont' have the code for it though. Tools mentioned by Jalpari are available (to use - dont have source code) Thx
As above, gethostbyname will fetch the IP for a given domain name. DomainTools uses a bot to log all sites IPs (most of them, which is why they don't all show up instantly), so you'd have to spider the internets millions of domains and create a database of domain => ip to do the reverse lookup. Hope that helps, Jay
if you running a windows server, you can do the following: <? echo exec("ping domain.com"); ?> It should output whatever you see in your cmd when you ping a domain. (including response time etc). I hope that helps! Regards
I've done that in the past... I can program something like that for you... but not free of course, since it's a pretty uncommon script (meaning you'll not find it anywhere else 4 free).