如何处理

发布于 2024-08-05 11:29:14 字数 374 浏览 9 评论 0原文

<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 技术交流群。

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

发布评论

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

评论(2

素食主义者 2024-08-12 11:29:14

给它一个以 [] 结尾的名称,例如:

<select id="industryExpect" name="industryExpect[]" multiple="multiple">
    <option value="1">item1</option>
    <option value="2">item2</option>
    <option value="3">item3</option>
</select>

然后在 $_POST 数组中,您将获得所有选定选项的数组:

// assuming that item1 and item3 were selected:
print_r($_POST['industryExpect']);
/*
array
(
    0 => 1
    1 => 3
)
*/

Give it a name with [] on the end, for example:

<select id="industryExpect" name="industryExpect[]" multiple="multiple">
    <option value="1">item1</option>
    <option value="2">item2</option>
    <option value="3">item3</option>
</select>

Then in your $_POST array, you'll get an array of all the selected options:

// assuming that item1 and item3 were selected:
print_r($_POST['industryExpect']);
/*
array
(
    0 => 1
    1 => 3
)
*/
计㈡愣 2024-08-12 11:29:14

启动 Html 文件。前任。 a.html

<form action="process.php" method="post">
    <select name="names[]" multiple="multiple">
    <option value="john">john</option>
    <option value="jack">jack</option>
    </select>
    <input type=hidden name=submitted>
    <input type=submit name=submit>
</form>

Process.php:

<?php
print_r( $_POST['names'] );
?>

Starting Html file. ex. a.html

<form action="process.php" method="post">
    <select name="names[]" multiple="multiple">
    <option value="john">john</option>
    <option value="jack">jack</option>
    </select>
    <input type=hidden name=submitted>
    <input type=submit name=submit>
</form>

Process.php:

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