PHP如何接收一批复选框数据?
关键代码是:
while ($row= mysql_fetch_array($result, MYSQL_ASSOC))
{ $id=$row[id];
$html=<<<html
<tr><td>
<input style="float:left" type="checkbox" name="mycheckbox[]" value="$id">
<span style="float:left">$row[content]</span>
<span style="color:black;float:right">$row[submitter]</span></td></tr>
html;
echo $html;
}
有很多复选框。
如何在另一个 PHP 文件中接收这些复选框值?
您知道,您需要命名这些复选框,以便 PHP 文件可以在另一端接收这些值。但如何命名这些复选框呢?如果我命名 1,2,3,...,如何将它们与 $row[id] 关联起来?
The key code is:
while ($row= mysql_fetch_array($result, MYSQL_ASSOC))
{ $id=$row[id];
$html=<<<html
<tr><td>
<input style="float:left" type="checkbox" name="mycheckbox[]" value="$id">
<span style="float:left">$row[content]</span>
<span style="color:black;float:right">$row[submitter]</span></td></tr>
html;
echo $html;
}
There are many checkboxes.
How to receive these checkbox values in another PHP file?
You know, you need to name these checkboxes so a PHP file can receive these values on the other side. But how to name these checkboxes? If I name 1,2, 3,...,how can I associate them with $row[id]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要给它们命名 - 您可以这样做:
或者像这样获取数组:
然后您可以检查
isset($_POST[$id])
或isset($ _POST['myBoxes'][$id])
You need to give them names - you can either do it like this:
or like this to get an array:
You can then check
isset($_POST[$id])
orisset($_POST['myBoxes'][$id])
为您的复选框命名,以便您可以轻松识别它们。
例如,
然后在您接收的 php 文件中,您可以找到所有复选框,
这将拉出您所有选中的 id。
Name your checkboxes so you can easily identify them.
eg
then in your recieving php file you can find all checkboxes by
That will pull out all your checked ids.