如何处理
<select id="industryExpect" multiple="multiple">
<option value="1">item1</option>
<option value="2">item2</option>
<option value="3">item3</option>
...
</select>
我看到类似的东西: IndustryExpect=13&industryExpect=17&industryExpect=19
比如说,有多个具有相同 KEY 的值,
如何在 PHP 中从 $_POST 检索它们?
<select id="industryExpect" multiple="multiple">
<option value="1">item1</option>
<option value="2">item2</option>
<option value="3">item3</option>
...
</select>
I'm seeing something like :
industryExpect=13&industryExpect=17&industryExpect=19
Say,there are multiple value with the same KEY,
How to retrieve them from $_POST in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
给它一个以
[]
结尾的名称,例如:然后在
$_POST
数组中,您将获得所有选定选项的数组:Give it a name with
[]
on the end, for example:Then in your
$_POST
array, you'll get an array of all the selected options:启动 Html 文件。前任。 a.html
Process.php:
Starting Html file. ex. a.html
Process.php: