Have a look at file() :
http://www.php.net/manual/en/function.file.php
$lines = file('log_test.txt');
echo $lines[4]; // prints line #5
regards,
philip
On Fri, 27 Apr 2001, Gary wrote:
> 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]
>
--
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]