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 Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/ 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> Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/#findComment-192522 Share on other sites More sharing options...
Jessica Posted February 23, 2007 Share Posted February 23, 2007 http://php.net/nl2br Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/#findComment-192523 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. Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/#findComment-192527 Share on other sites More sharing options...
effigy Posted February 24, 2007 Share Posted February 24, 2007 http://www.htmlcodetutorial.com/linepar/_PRE.html Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/#findComment-193032 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. Link to comment https://forums.phpfreaks.com/topic/39854-solved-replacing-rn-with-sorry/#findComment-196356 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.