Mat>To get data out of the file that you
Mat>have opened, you will need to read() it n.
Mat>http://www.php.net/manual/en/function.fread.php

Ok, how about this? What about error checking if the file contains something as I 
include below? Is that enough?

<?php
// get contents of a file into a string
$filename = "/usr/local/something.txt";
$handle = fopen ($filename, "r");
$contents = fread ($handle, filesize ($filename));
fclose ($handle);

if ($contents){echo"<textarea>$contents</textarea>";}
else{echo "no contents there";}
?>



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

Reply via email to