MySQL 查询多个复选框值

MySQL query for multiple checkbox values

我是复选框的新手。我想让用户根据复选框列表表示的三个可能的过滤器进行搜索。例如,如果我使用下面的表格,我希望用户能够包括所有(红色或蓝色)和大的形状。我能够找到的关于复选框查询的建议并没有完全解决这个问题。有没有一种方法可以用一个 MySQL 查询来做到这一点?

<form action="dbdquery.php" method="get">


<p>
Color:
<br/>
<input type="checkbox" name="color[]" value="Include All" checked/> Include All<br/>
<input type="checkbox" name="color[]" value="Red"/> Red<br/>
<input type="checkbox" name="color[]" value="Blue"/> Blue<br/>
<input type="checkbox" name="color[]" value="Yellow"/> Yellow<br/>

</p>

<p>
Size:
<br/>
<input type="checkbox" name="size[]" value="Include All" checked/> Include All<br/>
<input type="checkbox" name="size[]" value="Small"/> Small<br/>
<input type="checkbox" name="size[]" value="Medium"/> Medium<br/>
<input type="checkbox" name="size[]" value="Large"/> Large<br/>

</p>


<p>
Shape:
<br/>
<input type="checkbox" name="shape[]" value="Include All" checked/> Include All<br/>
<input type="checkbox" name="shape[]" value="Round"/> Round<br/>
<input type="checkbox" name="shape[]" value="Square"/> Square<br/>
<input type="checkbox" name="shape[]" value="Irregular"/> Irregular<br/>

</p>


    <input type="submit" value="Search">

</form>

试试这个:

使用内爆功能,

$colors = 内爆("," , $_GET['color']);

$size = 内爆("," , $_GET['size']);

$shape = 内爆("," , $_GET['shape']);

查询:

select * 来自 table 其中颜色在 ($colors) 或大小在 ($size) 或形状在 ($shape);

您需要添加条件来勾选包括全部。 (如果用户检查select所有变量包括所有检查值)