Hello, I need a basic script which can take 100 URL's and return a list showing the URL with it's IP address. Software like SEOQuake pulls the IP and shows it in my browser for a single URL, but I need something which can pull the IP's from a list of multiple domains and return them to me in a simple list showing the domain URL alongside the IP address.
Hello I can do this for you at a price of $25. I have 3+ years experience in php coding. If you would like to take my offer please contact my via PM. Thanks
Hello, I started coding it, can give you full working script with front end and simple storage of the URLs for $30. My coding is modular of course and you can use it in your own code if you want. Please contact me. Regards =)
php5 <?php $urls = $_REQUEST['urls']; $urls = urldecode($urls); $urls = stripslashes($urls); if(isset($urls) && $urls != '') { $list = explode("\n",$urls); $i = 0; echo "<ul>"; foreach($list as $val) { $url = str_replace('http://','',$val); $url = str_replace('/','',$url); $url = trim($url); $ip = dns_get_record($url, DNS_A); echo "<li>"; echo '['.$url. '] : '.$ip[0][ip]; echo "</li>"; unset($ip); unset($url); if($i == 100) break; } echo "</ul>"; } ?> <html> <head> </head> <body> <form method="post"> list url (1url per line: blablabla.com) <TEXTAREA NAME="urls" COLS=40 ROWS=20 scroll="auto"></TEXTAREA> <input type="submit"> </form> </body> </html> Code (markup):