Upon visiting a given link using my browser, it's working just as planned. However, when I'm trying to access it via cURL, it just isn't working.
Here's my code:
<?php
$url='http://example.com';
$ch = curl_init ($url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER,1);
$rawdata = curl_exec($ch);
if(curl_errno($ch))
{
echo 'Curl error: ' . curl_error($ch);
}
curl_close ($ch);
?>
