如何回显带有换行符的文本区域的输入?
我正在使用文本区域将文本发送到我的数据库。
数据库的屏幕截图:
当我从数据库中读取时,它会删除换行符,我该如何保留它们在 $row['opmerkingen'] 中?
I'm using an textarea to send text to my DB.
Screenshot of db:
When I'm reading from the DB it removes the line breaks, how can I keep them in $row['opmerkingen']?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
显示文本时,使用
nl2br()
将换行符转换为< ;br/>
标签,即代替,使用
。
默认情况下,浏览器将换行符显示为空格,因此必须将其转换为
标记。对于那些觉得这很有用的人 - 请考虑使用 Emil Vikström 建议的
white-space: pre-line
。我不再是网络专家,很容易无法验证这一点,但 Boaz 在评论中说所有现代浏览器都支持它。如果是这样,那么应该优先使用nl2br()
。When displaying text, use
nl2br()
to convert newlines to<br/>
tags, i.e., instead of<?php echo $row['text']; ?>
, use<?php echo nl2br($row['text']); ?>
.By default, browsers display newlines as spaces, therefore they have to be converted to
<br/>
tags.For those who find this useful - please consider using
white-space: pre-line
, suggested by Emil Vikström. I'm not a web guy anymore and easily can't verify this, but Boaz says in comments that it is supported by all modern browsers. If so, that should be preferred to usingnl2br()
.nl2br 的替代方法是使用 CSS 属性 white-space :
An alternative to nl2br is to make use of the CSS attribute white-space:
我输入如下,但不使用单引号。
加上双引号。然后工作了。
当我们获取数据时,它以 \r\n 开头。还可以使用双引号。
I put as follows but not working with single quotes.
Put the double quotes. Then worked.
When we getting data it is comming with \r\n. Also use the double quotes there.