返回表单时,for 循环中的多重选择会丢失数据
我有一个在 while 循环中进行多项选择的表单:
while ($row_i = mysql_fetch_array($res_i))
{
$i++;
// maak select name
$name_bewerking_id = 'bewerking_id'.$i;
?>
<tr valign="top">
<td>
<select name="<?php echo $name_bewerking_id ?>[]" multiple="multiple" size="2">
<?php
$sql = "SELECT id, bewerking FROM bewerkingen ORDER BY bewerking ASC";
$res = mysql_query($sql,$con);
while ($row = mysql_fetch_assoc($res))
{ ?>
<option value="<?php echo $row['id']; ?>"><?php echo $row['bewerking']; ?></option>
<?php } ?>
</select>
</td>
</tr>
<?php
}
发送表单时:
$bewerking_id[$i] = array();
$bewerking_id[$i] = $_POST['name_bewerking_id'][$i];
if(isset($bewerking_id_temp[$i]))
{
foreach($bewerking_id_temp[$i] as $temp[$i])
{
array_push($bewerking_id[$i], $temp[$i]);
}
}
返回表单:
for ($i = 0; $i <= $aantal_regels_corr; $i++)
{
// maak select name
$name_bewerking_id = 'bewerking_id'.$i;
?>
<tr valign="top">
<td>
<select name="<?php echo $name_bewerking_id ?>[]" multiple="multiple" size="2">
<?php
$sql = "SELECT id, bewerking FROM bewerkingen ORDER BY bewerking ASC";
$res = mysql_query($sql,$con);
while ($row = mysql_fetch_assoc($res))
{ ?>
<option <?php if(isset($bewerking_id[$i]) && in_array($row['id'], $bewerking_id[$i])){ echo 'selected="selected"'; } ?> value="<?php echo $row['id']; ?>"><?php echo $row['bewerking']; ?></option>
<?php } ?>
</select>
</td>
</tr>
<?php
}
返回表单时(当其他字段之一未填写时)所选选项将丢失并且没有再次选择。
我哪里搞砸了?
I have an form with an multiple select in the while loop:
while ($row_i = mysql_fetch_array($res_i))
{
$i++;
// maak select name
$name_bewerking_id = 'bewerking_id'.$i;
?>
<tr valign="top">
<td>
<select name="<?php echo $name_bewerking_id ?>[]" multiple="multiple" size="2">
<?php
$sql = "SELECT id, bewerking FROM bewerkingen ORDER BY bewerking ASC";
$res = mysql_query($sql,$con);
while ($row = mysql_fetch_assoc($res))
{ ?>
<option value="<?php echo $row['id']; ?>"><?php echo $row['bewerking']; ?></option>
<?php } ?>
</select>
</td>
</tr>
<?php
}
When the form is send:
$bewerking_id[$i] = array();
$bewerking_id[$i] = $_POST['name_bewerking_id'][$i];
if(isset($bewerking_id_temp[$i]))
{
foreach($bewerking_id_temp[$i] as $temp[$i])
{
array_push($bewerking_id[$i], $temp[$i]);
}
}
Returning to the form:
for ($i = 0; $i <= $aantal_regels_corr; $i++)
{
// maak select name
$name_bewerking_id = 'bewerking_id'.$i;
?>
<tr valign="top">
<td>
<select name="<?php echo $name_bewerking_id ?>[]" multiple="multiple" size="2">
<?php
$sql = "SELECT id, bewerking FROM bewerkingen ORDER BY bewerking ASC";
$res = mysql_query($sql,$con);
while ($row = mysql_fetch_assoc($res))
{ ?>
<option <?php if(isset($bewerking_id[$i]) && in_array($row['id'], $bewerking_id[$i])){ echo 'selected="selected"'; } ?> value="<?php echo $row['id']; ?>"><?php echo $row['bewerking']; ?></option>
<?php } ?>
</select>
</td>
</tr>
<?php
}
When returning to the form (when one of the other fields is not filled in) the chosen option(s) are lost and not selected again.
Where did I messed up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用此标识符
'name_bewerking_id'
读取 POST 数据,但选择名称由
和
$name_bewerking_id = 'bewerking_id 给出'.$i
You read POST data with this identifier
'name_bewerking_id'
but the select name is given by
<?php echo $name_bewerking_id ?>
with$name_bewerking_id = 'bewerking_id'.$i
如果假设您要在 3 个不同页面之间传递表单信息,则需要使用 $_SESSION 变量。普通的 PHP 变量不能在页面之间传递,只能传递 $_SESSION 变量。
例如:
第 1 页
第 2 页
第 3 页
If assuming you are passing the form information between 3 different pages, you will need to use $_SESSION variables for that. Normal PHP variables cannot be passed between pages, only $_SESSION variables.
For example:
Page 1
Page 2
Page 3