Due soluzioni per questo:
-
Funzione PHP
nl2br()
:ad es.
echo nl2br("This\r\nis\n\ra\nstring\r"); // will output This<br /> is<br /> a<br /> string<br />
-
Racchiudi l'input in
<pre></pre>
tag.
Due soluzioni per questo:
Funzione PHP nl2br()
:
ad es.
echo nl2br("This\r\nis\n\ra\nstring\r");
// will output
This<br />
is<br />
a<br />
string<br />
Racchiudi l'input in <pre></pre>
tag.