我创建了一些下拉框,允许用户缩小他们正在寻找的数据的范围。其中两个下拉框涉及用户选择年份的位置。例如,第一个框可能是 1990,第二个框可能是 2000。现在如何设置允许应用此时间间隔的查询?
$pYear1 = the first year they select in the drop down box
$pYear2 = the second year they select in the drop down box
select * from table where year = '$pYear1 - $pYear2';
我试过这个,但没有用。谁能帮我这个?