php mysql查询指定范围内日期

发布时间:2020-12-31编辑:脚本学堂
本文介绍了php mysql中查询指定范围日期的一个例子,介绍了between语句的用法,有需要的朋友做个参考。

php时间戳查询。
如果数据库时间显示的是 2011-04-05,则不需要用 strtotime 时间戳转换函数。

例子,php时间段查询。
 

复制代码 代码示例:
<?php
$timea = strtotime($_POST['timea']);
$timeb = strtotime($_POST['timeb']);
$sq2="select * from `ecs_order_info` where add_time between '$timea' and '$timeb' and `quanxian`='$dangqian' order by `order_id` DESC limit 50";
$sql = mysql_query($sq2);