时间:2021-07-01 10:21:17 帮助过:30人阅读
$mindate=$_GET['mindate']; $maxdate=$_GET['maxdate']; $sql="SELECT * from `khxx` where $mindate and $maxdate";
显然你的sql语句是错的。
$mindate = isset($_GET['mindate'])?$_GET['mindate']:date("Y-m-d",strtotime("-1 day"));$maxdate = isset($_GET['maxdate'])?$_GET['maxdate']:date("Y-m-d",strtotime("-1 day"));
$sql="SELECT * from `khxx` where $mindate and $maxdate"; 有问题.
如果你数据库的日期字段为 addtime,要这样写
$sql="SELECT * from `khxx` where addtime>'".$mindate."' and addtime<'".$maxdate."'";