在 mySQL 的输出上显示文本区域的返回

发布于 2024-12-23 15:06:52 字数 286 浏览 0 评论 0 原文

全部, 我有一个可以输入的文本区域。当我提交表单并插入到我的数据库中时,我会这样做:

$textarea = mysql_real_escape_string($_POST['textarea']);

当我显示输出时,我会这样做:

echo stripslashes($textarea);

但是,当我这样做时,它会删除来自的返回文本区域。当我尝试从 mySQL 编辑文本区域时,它会将返回值放回原处。知道为什么会这样吗?

All,
I have a textarea that someone can type in. When I submit the form and insert in into my database I do it like this:

$textarea = mysql_real_escape_string($_POST['textarea']);

When I display the output I do it like this:

echo stripslashes($textarea);

However when I do it this way it removes the returns from the textarea. When I try and edit the textarea from mySQL though it puts the returns back in. Any idea why this would be?

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

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

发布评论

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

评论(1

吹泡泡o 2024-12-30 15:06:52

您可以这样使用nl2br

echo nl2br($textarea);

如果您需要更多信息,这是官方文档页面:链接

You can use nl2br in this way:

echo nl2br($textarea);

If you need more info, this is the official documentation page: link.

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