Source Code:
(back to article)
<?php $text = "Line 1<br />Line 2<br />Line 3"; $text = str_replace("<br />", "\n", $text); echo $text;
Result:
Report an issue