Hello,
In my db i have the characters \r\n in some text. I want too replace that so i did this:
<?php $text = str_replace("\r\n", "<br>", $row['info_auto']); $text1 = wordwrap($text, 20, "<br>"); echo $text1; ?>
But why don't this works ???
What is being echoed instead?
It echoed the same as is.
But i think i'm going too redo some stuff. For enters just an [br] tag.
i shall mark this thread as resolved.