file_get_contents error
Posted: Fri Dec 11, 2009 2:43 pm
<?php
$url = 'https://www.google.com';
$contents = @file_get_contents($url) or die ("ERROR");
echo $contents;
?>
Showing me ERROR
i.e. file_get_content returns some error. how to resolve it?
$url = 'https://www.google.com';
$contents = @file_get_contents($url) or die ("ERROR");
echo $contents;
?>
Showing me ERROR
i.e. file_get_content returns some error. how to resolve it?