Home > Backend Development > PHP Tutorial > 请问一下关于 textarea 换行 的有关问题

请问一下关于 textarea 换行 的有关问题

WBOY
Release: 2016-06-13 11:56:31
Original
839 people have browsed it

请教一下关于 textarea 换行 的问题

在HTML上是 textarea 里面输入内容加回车换行再输入内容。。。
然后POST到PHP页面,把数据保存在数据库字段里面,类型为 text
接着在前端显示的时候,没有换行效果,如何解决,谢谢。

如果在textarea里显示是有换行 效果的。
------解决方案--------------------

内容
Copy after login

------解决方案--------------------
显示的时候,用nl2br 方法把换行转成html的换行标记
便可。

例如:
<br /><?php<br />$content = <<<TXT<br />aaaa<br />bbbb<br />cccc<br />dddd<br />TXT;<br /><br />echo nl2br($content);<br />?><br />
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template