为什么此表单提交未按预期工作
我在 test.php
中有这段代码。
- 当我仅通过键入脚本来访问脚本时,我只想查看表单,
- 但是当我单击表单提交按钮时,下次加载页面时,我想查看表单和一些表明表单已提交的评论。
由于某种原因,即使我单击“提交”,我也没有收到它正在发布的消息。任何人都可以解释为什么吗?以及我怎样才能让它发挥作用。
<body>
<form action="" method="post">
<input type="text" id="inp" />
<input type="submit" value="submit" />
</form>
<?php
if (isset($_POST['submit'])) {
echo "posting";
}
?>
</body>
I have this code in test.php
.
- When I access the script just by typing it, I want to see just the form
- but when I click the form submit button, the next time the page loads, I want to see the form and some comment that says that the form has been submitted.
For some reason, even when I click submit, I don't get the message that it's posting. Anyone can explain why? and how can I get it to work.
<body>
<form action="" method="post">
<input type="text" id="inp" />
<input type="submit" value="submit" />
</form>
<?php
if (isset($_POST['submit'])) {
echo "posting";
}
?>
</body>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为输入命名:
Give a name to the input:
试试这个:
Try this: