Php replaces textbox carriage return with html line feed code

Source: Internet
Author: User
Tags php tutorial

The source of the Mail Body is sometimes the text content in TextBox. However, if the text content is not processed, the text will not have any format, and will be displayed row by row. What we are talking about now is how to make text content line break without being crowded together.
During single-step debugging, we will find that in the obtained text content, the line feed in the text is replaced with "rn", because it has never been found, leading to a large circle. After finding this cause, you can replace this string with the HTML <br/>.
Ex: string strBody = Body. Replace ("rn", "<br/> ");
Although it was easy, it was really a headache when I didn't know it at the time. I hope it will be useful to you too.


Instance

<Form id = "form1" name = "form1" method = "post" action = "">
<Label>
<Textarea name = "t" id = "t" cols = "45" rows = "5"> </textarea>
</Label>
<Label>
<Input type = "submit" name = "button" id = "button" value = "submit"/>
</Label>
</Form>
<? Php Tutorial
If ($ _ POST ){
Echo str_replace (chr (13), '<br>', $ _ POST ['t']);
 
 }
?>

For more details, see: http://www.111cn.net/phper/29/ff8b04e8f5b663b8b86d960321efcc83.htm

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.