chrisredding Posted February 23, 2007 Share Posted February 23, 2007 Hi, This seems like an obvious one, but I can't find anything useful anywhere: W3C Schools, PHP Freaks, WHT... Anyway, I've got a PHP script logging it's use to a .txt file. This file is outside of the root directory of the site for the usual security reasons. Inside my .htaccess protected and obscure test area I have a number of little utilities that I call upon from time to time. So I decided to add a viewer .php for the log files for the aforementioned script. So I did this: <?php echo readfile("somewhereonmyserver/some_sort_of_logs/thelog.txt"); ?> Which works a treat. But the .php script writing the 'thelog.txt' file inserts \r\n at the ends of lines. Can I make that into <br> for the version I view on the net? Many thanks Chris Quote Link to comment Share on other sites More sharing options...
effigy Posted February 23, 2007 Share Posted February 23, 2007 How about this? <pre> <?php echo readfile("somewhereonmyserver/some_sort_of_logs/thelog.txt"); ?> </pre> Quote Link to comment Share on other sites More sharing options...
Jessica Posted February 23, 2007 Share Posted February 23, 2007 http://php.net/nl2br Quote Link to comment Share on other sites More sharing options...
chrisredding Posted February 23, 2007 Author Share Posted February 23, 2007 Thank you effigy. Genius. What is <pre> then? Never heard of it. Quote Link to comment Share on other sites More sharing options...
effigy Posted February 24, 2007 Share Posted February 24, 2007 http://www.htmlcodetutorial.com/linepar/_PRE.html Quote Link to comment Share on other sites More sharing options...
chrisredding Posted February 28, 2007 Author Share Posted February 28, 2007 Thanks for all the replies! Much appreciated. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.