php根据输入开始时间 结束时间搜索订单数据
<form name="form2" method="get" action="shops_operations.php"> <br /><input name="starttime" type="text" id="starttime" value="<?php echo $startDay?>" class='iptxt'/><br /><input name="endtime" type="text" id="endtime" value="<?php echo $endDay?>" class='iptxt'/><br /><input name="dingdan" type="submit" class='np coolbg' value="搜索"><br /></from><br />
登入後複製
数据库表名是dede_shops_orders,时间字段是stime(int类型)已经转化为时间数据显示了:;控件已做好,想根据俩个input的时间数据进行搜索,PHP页面如何处理啊,求大神指点!
------解决思路----------------------select的时候where区间查询,> 和<
------解决思路----------------------shops_operations.php页面根据传过来的 起始时间 $startTime 和结束时间 $endTime写出sql
select * from dede_shops_orders where `stime` between $startTime and $endTime.
要先把 起始时间和结束时间也转化成整型
------解决思路----------------------