gpt4 book ai didi

php - 如何通过表格中的表单发送复选框状态

转载 作者:行者123 更新时间:2023-12-05 04:17:16 25 4
gpt4 key购买 nike

下面的表单包含一个带有复选框作为输入类型的表格当我执行 _POST 的 var_dump 时,每个复选框的值都没有通过

<form method="post" action="index.php?option=com_content&view=article&id=3" name="details" >
<div id="table_container">
<table class="z">
<thead>
<tr>
<th>Select</th>
<th>Last Name</th>
<th>First Name</th>
<th>Street Num</th>
<th>Street Name</th>
<th>City</th>
<th>State</th>
<th>Zip</th>
<th>Phone</th>
</tr>
</thead>
<tbody>
<?
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
?>
<tr>
<td style="text-align: center; vertical-align: middle;">
<input type="checkbox" name="<?echo $row['UUID'];?>">
</td>
<td><?echo $row['last_name'];?></td>
<td><?echo $row['first_name'];?></td>
<td><?echo $row['street_num'];?></td>
<td><?echo $row['street_name'];?></td>
<td><?echo $row['city'];?></td>
<td><?echo $row['state'];?></td>
<td><?echo $row['zip'];?></td>
<td><?echo $row['phone'];?></td>
</tr>
<?
}
?>
</tbody>
</table>
</div>
<input type="hidden" id="type" name="type" value="4">
<input type="submit" value="Place On Hold">
</form>

最佳答案

所以我认为你想要做的是这个。如果我理解正确的话。

<input type="checkbox" name="UUID[]" value="<?echo $row['UUID'];?>">

现在,当您发布页面时,您将在 POST 中拥有一个名为 UUID 的数组,其中每个 UUID 都被选中。

关于php - 如何通过表格中的表单发送复选框状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24098975/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com