I don't know why but I always got this error when I want to get PHP data with file_get_contents.
I have checked my PHP.ini and allow_url_fopen is: ON so that couldn't be the problem.
Here is the code I'm using:
$id='54352';
$url='http://www.google.com';
$data = file_get_contents('http://www.####.###/###.php?id='.$id.'&url='.urlencode($url));
var_dump($data);
I don't know what is going on here, I just get this error message and the value: bool(false).
I have also tried cURL, but it doesn't return ANY value to me.
Can anyone please help me?