I am trying to fetch some data 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;
}
$file= file_get_contents_curl('www.website.com/page');
and I get errorno 7
CURLE_COULDNT_CONNECT (7)
Failed to connect() to host or proxy.
I have tried with www.google.com too, but i've got the same error.
I guess that i have to change something on server (linux), but i dont know what.
Thank you.