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>






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

Reply via email to