इसके लिए दो समाधान:
-
PHP फ़ंक्शन
nl2br()
:उदा.,
echo nl2br("This\r\nis\n\ra\nstring\r"); // will output This<br /> is<br /> a<br /> string<br />
-
इनपुट को
<pre></pre>
. में लपेटें टैग।देखें: W3C विकी - HTML/Elements/pre
इसके लिए दो समाधान:
PHP फ़ंक्शन nl2br()
:
उदा.,
echo nl2br("This\r\nis\n\ra\nstring\r");
// will output
This<br />
is<br />
a<br />
string<br />
इनपुट को <pre></pre>
. में लपेटें टैग।
देखें: W3C विकी - HTML/Elements/pre