在php中通过post获取复选框值
我正在从数据库获取数据库,每一行都有一个 id,我会像这样在 html 中显示它,
<td><input type="checkbox" value"1">test1</td></tr>
<td><input type="checkbox" value"2">test2</td></tr>
依此类推...
现在假设用户选中了 15 个复选框中的 10 个,然后单击“提交”。
如何在php中获取这些框的值???
I'm getting database from database and each row has a id and im showing it like this in html
<td><input type="checkbox" value"1">test1</td></tr>
<td><input type="checkbox" value"2">test2</td></tr>
and so on...
now lets say that user checked ten check boxes out of 15 and then clicked submit .
how to get values of those boxes in php???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您的复选框需要有一个名称和名称。 value 属性:
那么当发布该值时,您可以通过 $_POST 访问 PHP 中的值:
请记住,只有选中该框才会返回这些值,因此很可能您不是上面的 PHP,而是超过可能只是想检查该值是否存在。
Your checkboxes need to have a name & a value attribute:
then when that is posted you can access the values in PHP via $_POST:
Keep in mind that the values will only be returned if the box is checked, so most likely instead of the above PHP, you're more than likely just going to want to check if the value exists.
给复选框命名:
在 php 中只需读取请求
如果 OP 在 a 中没有这些复选框,那么 ,任何数量的 PHP 代码都绝对没有区别(FROM 搅拌机)
give the checkboxes names:
Than in php just read the request
if the OP doesn't have these checkboxes inside of a , any amount of PHP code will make absolutely no difference (FROM Blender)
它们将位于 $_GET 或 $_POST 数组中
they will be in either the $_GET or the $_POST array
试试这个方法..
Try this way..