Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to remove \r\n from php mail content. it displays every new line of mail content. content from database and it posted by CKEditor. please any one help me to solve this problem

share|improve this question
1  
Have you tried any of the common methods, like str_replace? – deceze Jul 20 '12 at 6:28

closed as too localized by deceze, DarkCthulhu, KingCrunch, vascowhite, Marco Jul 20 '12 at 6:29

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

$text = str_replace( array( "\r", "\n", PHP_EOL ), "", $text );
share|improve this answer
1  
Why the downvote? – Dainis Abols Jul 20 '12 at 6:31

Not the answer you're looking for? Browse other questions tagged or ask your own question.