That is not an error! It is a Warning...I got it the other day when the file was empty (or did not exist or something).
Use @ prefix to make it disappear
<?php
$ar=@file("http://www.something.com/the_filename.txt");
?>
Hope this helps...
Lord Loh.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

