如何回显带有换行符的文本区域的输入?

发布于 2024-11-15 03:47:45 字数 244 浏览 1 评论 0原文

我正在使用文本区域将文本发送到我的数据库。

数据库的屏幕截图:

在此处输入图像描述

当我从数据库中读取时,它会删除换行符,我该如何保留它们在 $row['opmerkingen'] 中?

在此处输入图像描述

I'm using an textarea to send text to my DB.

Screenshot of db:

enter image description here

When I'm reading from the DB it removes the line breaks, how can I keep them in $row['opmerkingen']?

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏雨凉 2024-11-22 03:47:45

显示文本时,使用 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 using nl2br().

悲歌长辞 2024-11-22 03:47:45

nl2br 的替代方法是使用 CSS 属性 white-space

white-space: pre-line;

An alternative to nl2br is to make use of the CSS attribute white-space:

white-space: pre-line;
腹黑女流氓 2024-11-22 03:47:45

我输入如下,但不使用单引号

echo $row['text'].'\n';

加上双引号。然后工作了。

<textarea rows="10" cols="62" style="white-space: pre-line;" wrap="hard">
<?php echo $row['text']."\n"; ?>
</textarea>

当我们获取数据时,它以 \r\n 开头。还可以使用双引号

I put as follows but not working with single quotes.

echo $row['text'].'\n';

Put the double quotes. Then worked.

<textarea rows="10" cols="62" style="white-space: pre-line;" wrap="hard">
<?php echo $row['text']."\n"; ?>
</textarea>

When we getting data it is comming with \r\n. Also use the double quotes there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文