I use file_get_contents function to get and show external link on my specific page.
In local everything is OK but my server doesn't support file_get_contents function.
I try to use cURL with this code:
function file_get_contents_curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
echo file_get_contents_curl('http://google.com');
But return me blank page.
What is wrong?

file_get_contents()to work) then they have not installed curl either. If it's your own server, then enableallow_url_fopenin your PHP config. – Brian Dec 16 '11 at 22:26cURL support enabled– NuLLeR Dec 16 '11 at 22:34