> I'm trying to test the following script to display the contents of the
> following URL but it will not output.
> 
> Any advice will be greatly appreciated.
> Thank you.
> Tony Ritter
> .......................................................
> 
> <html>
> <head>
> </head>
> <body>
> <?
>    $file_handler = fopen("http://www.weather.com";, "r");
>     $contents = fread($file_handler, filesize($file));
>     fclose($file_handler);
>     echo $contents;
>  ?>
> </body>
> </html>

filesize() won't work on remote files (through http) and like Justin
said... what's $file??

---John W. Holmes...

PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to