我正在使用Jquery Multiselect Widget来创建一个带有 multiselect 选项的下拉列表框。我正在使用 MySql 数据库中的数据填充下拉列表。我无法将多个值传递给 $_POST 中的 php 文件。
我的 Multiselect DropDown 的 HTML 和 PHP 代码。
<form id="intermediate" name="inputMachine" method="post">
<select id="selectDuration" name="selectDuration" multiple="multiple">
<option value="1 WEEK" >Last 1 Week</option>
<option value="2 WEEK" >Last 2 Week </option>
<option value="3 WEEK" >Last 3 Week</option>
</select>
<?php
//include '../db/interface/DB_Manager.php';
$connect = mysql_connect("localhost", "root", "infinit") or die(mysql_error());
mysql_select_db("serverapp") or die(mysql_error());
$query = "select id,name from rpt_shift_def"; //Write a query
$data = mysql_query($query); //Execute the query
?>
<select id="selectShift" name="selectShift" multiple="multiple">
<?php
while($fetch_options = mysql_fetch_array($data)) { //Loop all the options retrieved from the query
?>
<option name="selected_ids[]" id ="<?php echo $fetch_options['id']; ?>" value="<?php echo $fetch_options['name']; ?>"><?php echo $fetch_options['name']; ?></option><!--Echo out options-->
<?php
}
?>
</select>
在这里,我在 Multiselect Dropdown 中填充 Shift 下拉列表。如果我选择不止一个班次,我无法在 php.ini 中获取所有这些选定的值。相反,我只得到最后一个选择的值。
我想做这样的事情。
$shiftarraycalc = array();
foreach ($_POST['selectShift'] as $key => $value) {
array_push($shiftarraycalc,$value);
}
但它不工作。
我不知道如何在 $_POST 中获取多个值。