Allan- Posted August 13, 2008 Share Posted August 13, 2008 Hi, my question is: how to remove linebreaks (not <br />-s) which i made pressing enter in <textarea>. Hopefully there is such php function. Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/ Share on other sites More sharing options...
efficacious Posted August 13, 2008 Share Posted August 13, 2008 i think we need more information on what your doing to help.. most of the time unless you use a function it already gets rid of line breaks by default. as far as I kno ne ways Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615497 Share on other sites More sharing options...
DarkWater Posted August 13, 2008 Share Posted August 13, 2008 Umm... $text = str_replace("\n", '', $text); Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615501 Share on other sites More sharing options...
efficacious Posted August 13, 2008 Share Posted August 13, 2008 does textareas hold line breaks dark? Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615503 Share on other sites More sharing options...
trq Posted August 13, 2008 Share Posted August 13, 2008 does textareas hold line breaks dark? Yes. Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615506 Share on other sites More sharing options...
thebadbad Posted August 13, 2008 Share Posted August 13, 2008 If you want to remove all line breaks from a string, remove "\r" and "\n" (depending on OS, "\r\n" and "\n" are line breaks): <?php $text = str_replace("\n", '', str_replace("\r", '', $text)); ?> Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615507 Share on other sites More sharing options...
Allan- Posted August 13, 2008 Author Share Posted August 13, 2008 thanks! i got all what i needed. Link to comment https://forums.phpfreaks.com/topic/119481-solved-how-to-remove-linebreaks/#findComment-615510 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.