I wanna make a script which will show reverse ip of a site. For this i am going to use a 3rd party website. So that my script is :
<?php
$ip='http://viewdns.info/reverseip/?host=barnesandnoble.com';
$useragent='Mozilla/5.0 (BlackBerry; U; BlackBerry 9700; pt) AppleWebKit/534.8+ (KHTML, like Gecko) Version/6.0.0.546 Mobile Safari/534.8+';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $ip);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
$file = curl_exec($ch);
echo ($file); //this is for testing that files are getting or not
?>
But this is not returning anything. Is my code error ? or CURL can't get this kinds of web page ?
echo curl_error($ch);and see what it's saying first? Post the error in an edit... – phpisuber01 Nov 30 '12 at 2:35$file = curl_exec($ch);– slash-bang Nov 30 '12 at 2:57curl 'http://viewdns.info/reverseip/?host=barnesandnoble.com'– Ardy Dedase Nov 30 '12 at 3:39