表单中相同元素的多个实例
我从数据库加载一些用户可以编辑的数据。
假设我们有这样的形式:
<form>
Name: [TextBox]
Data: [TextArea]
-------------------
Name: [TextBox]
Data: [TextArea]
...
Name: [TextBox]
Data: [TextArea]
-------------------
[Submit Button]
</form>
元素应该有什么名称?
使用 PHP 获取发布数据的最佳方法是什么,以便我可以了解每个数据的 id 是什么?
注意:我想要只有 1 个提交按钮!
谢谢...
From the database, I load some data that user can edit.
Let's say we have this form:
<form>
Name: [TextBox]
Data: [TextArea]
-------------------
Name: [TextBox]
Data: [TextArea]
...
Name: [TextBox]
Data: [TextArea]
-------------------
[Submit Button]
</form>
What names should the elements have?
What is the best approach to fetch the posted data using PHP, so I can understand what's the id for each one?
Note: I want to have only 1 submit button!
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PHP 中,您可以使用数组:
然后在 PHP 中,您可以这样处理它:
另一种方法是使用 php 生成名称。让它们看起来像这样:
这样你就可以确定 $_POST['name'][10] 对应于 $_POST['data'][10]。
With PHP you can use an array:
Then in PHP you can process it like this:
Another way is to use php to generate names. Make them look like this:
This way you can be sure that $_POST['name'][10] corresponds to $_POST['data'][10].