I am new to webbscrapping and php .How ever i was trying this simple php curl code but output comes out blank. i.e i get a blank webpage when i run the following code
<?
$url = "oooff.com";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$curl_scraped_page = curl_exec($ch);
curl_close($ch);
echo $curl_scraped_page;
?>
I am using Wamp server 2 on a windows 7 64 bit pc. i have uncommented php_curl.dll the php.ini files in both apache/bin and php/bin in the wamp . I have checked the php_curl extention on the wamp server. still i get a blank webpage. What can be the problem? Any suggestions will be helpful
Thanks in advance..