从 post 访问 php 中一组选择框的值
我是 PHP 新手,我无法弄清楚这一点。
我试图弄清楚如何访问我在 HTML 代码中定义的一组选择框的数据。我尝试将它们分组为一个类,但这似乎不起作用......也许我做错了。
这是以下 HTML 代码。
<form action="" method="post">
<select class="foo">
<option> 1.....100</option>
</select>
<select class="foo">
<option> 1.... 500></option>
</select>
<input type="submit" value="Submit" name="submit"/>
</form>
我本质上想对所有选择框进行分组并访问 PHP 代码中的所有值。
谢谢
I'm new to PHP, and I can't figure this out.
I'm trying to figure out how to access the data of a group of select boxes I have defined in my HTML code. I tried grouping them as a class, but that doesn't seem to work... maybe I was doing it wrong.
This is the following HTML code.
<form action="" method="post">
<select class="foo">
<option> 1.....100</option>
</select>
<select class="foo">
<option> 1.... 500></option>
</select>
<input type="submit" value="Submit" name="submit"/>
</form>
I essentially want to group all my select boxes and access all the values in my PHP code.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您选择的标签中使用 name 属性。然后您可以通过 $_POST 变量中的名称访问这些字段。
在 PHP 中,您可以像这样访问这些:
Use the name attribute in your select tags. Then you can access those fields by name in the $_POST variable.
In your PHP you can access these like so: