Hi All.
$array = file ('http://www.google.de/search?q=expres sion');
$something = fopen( 'http://www.google.de/search?q=expres sion', "r");
In this two cases I get always the warning:
Warning: file(http://www.google.de/search?q=expression) - Success in
/home/alpha/kaczor/public_html/a.php on line 10
Why?
Is it connected with GET method? In this case we can't use GET?
Thanks, Andrzej.
$array = file ('http://www.google.de/search?q=expres sion');
$something = fopen( 'http://www.google.de/search?q=expres sion', "r");
In this two cases I get always the warning:
Warning: file(http://www.google.de/search?q=expression) - Success in
/home/alpha/kaczor/public_html/a.php on line 10
Why?
Is it connected with GET method? In this case we can't use GET?
Thanks, Andrzej.
Comment