![]() |
|
|
+ Search |
![]()
|
Dec 13th, 2001 00:10
ditoiu cristian, Mark,
version 1:
your hosting company has set in php.ini
allow_url_fopen = Off
cal them or change it yourself to
allow_url_fopen = On
version 2 :
you don't use the fopen properly ie :
<?
$src = fopen("http://www.google.com/", "r");
while(!feof($src))
{
$line = fgets($src, 1024);
print $line;
}
?>