Thanks for everyone's help on the original question. Now that I have
gotten the line breaks in a file, How do I get the file out with the
breaks? Also, does anyone know of a good tutorial on file formatting.
<?php
$location = "log_test.txt";
$toread = fopen($location, "r");
set_magic_quotes_runtime(0);
$content = fread($toread, filesize($location));
fclose($toread);
echo "$content";
?>
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]