如何保持 html

发布于 2024-12-07 18:00:10 字数 708 浏览 0 评论 0原文

假设我有一个这样的表单:

<form action="page.php" method="post">

    Section1: <input name="section1" type="text"></br>
    Section2: <input name="section2" type="text"></br>

    Text:</br>
    <textarea name="post_text" cols="100" rows="20"></textarea>

    <input name="submit" type="submit" value="Submit">

</form>

通常如果我希望保存插入表单字段中的内容,我会使用以下语句:

Section1: <input name="section1" type="text" vale="value="<?php echo $_POST['section1']; ?>""></br>

这样,如果我在提交时犯了错误(未发布错误控制代码),则插入的值将是保留,无需重新插入。

但是,在 textarea 标记中使用它不会产生所需的结果。

关于如何做有什么想法吗?

提前致谢!

Suppose I have a form like this:

<form action="page.php" method="post">

    Section1: <input name="section1" type="text"></br>
    Section2: <input name="section2" type="text"></br>

    Text:</br>
    <textarea name="post_text" cols="100" rows="20"></textarea>

    <input name="submit" type="submit" value="Submit">

</form>

Usually if I wish to save content inserted in a field of the form I would use this statement:

Section1: <input name="section1" type="text" vale="value="<?php echo $_POST['section1']; ?>""></br>

This way if I make a mistake in submission (error control code is not posted) the values inserted will be kept, and there is no need to reinsert them.

However using it in the textarea tag it will not produce the desired result.

Any ideas on how to do?

Thanks in advance!

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

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

发布评论

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

评论(4

早乙女 2024-12-14 18:00:10

不要忘记 htmlspecialchars()。这应该有帮助: https://developer.mozilla.org/en/HTML/Element/textarea

<textarea name="post_text" cols="100" rows="20"><?php echo htmlspecialchars($_POST['post_text']);?></textarea>

Don't forget about htmlspecialchars(). This should help: https://developer.mozilla.org/en/HTML/Element/textarea

<textarea name="post_text" cols="100" rows="20"><?php echo htmlspecialchars($_POST['post_text']);?></textarea>
雨落星ぅ辰 2024-12-14 18:00:10

您可以使用相同的方法,但将 echo 放在开始和结束 标记之间,作为 textarea 没有“值”(因此)它有文本内容:

<textarea name="post_text" cols="100" rows="20"><?php echo $_POST['textareaContent']; ?></textarea>

You could use the same approach, but put the echo between the opening and closing <textarea></textarea> tags, as the textarea doesn't have a 'value' (as such) it has textual content:

<textarea name="post_text" cols="100" rows="20"><?php echo $_POST['textareaContent']; ?></textarea>
一江春梦 2024-12-14 18:00:10

像这样使用 $_POST 变量。

<textarea name="post_text" cols="100" rows="20"><?= isset($_POST['post_text'])?$_POST['post_text']:'' ?></textarea>

内联条件检查是否设置了 $_POST['post_text'] 以删除 NOTICE 警告

Use the $_POST variable like this.

<textarea name="post_text" cols="100" rows="20"><?= isset($_POST['post_text'])?$_POST['post_text']:'' ?></textarea>

the inline conditional checks if the $_POST['post_text'] is set to remove the NOTICE warning

白芷 2024-12-14 18:00:10

您可以将其放入

<textarea name="post_text" cols="100" rows="20"><?php echo $_POST['post_text']; ?></textarea>

但是,直接调用 $_POST 元素并不是最佳实践。您应该这样做:

<textarea name="post_text" cols="100" rows="20">
<?php echo $var = isset($_POST['post_text']) ? $_POST['post_text'] : ''; ?>
</textarea>

这会阻止在第一次页面加载时报告 E_NOTICE 错误。

You would put it inside the <textarea> element like so:

<textarea name="post_text" cols="100" rows="20"><?php echo $_POST['post_text']; ?></textarea>

However, calling the $_POST element directly is not best practice. You should rather do something like this:

<textarea name="post_text" cols="100" rows="20">
<?php echo $var = isset($_POST['post_text']) ? $_POST['post_text'] : ''; ?>
</textarea>

This stops an E_NOTICE error from being reported upon the first page-load.

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