使用 php 显示 mysql 数据库中从开始日期到结束日期的数据,其中用户提供开始和结束日期
你好 如何使用 php codeigniter 显示 mysql 数据库中从开始日期到结束日期的数据 用户通过视图页面提供开始和结束日期。 开始和结束日期是从视图页面获取的......所以它应该能够从 mysql 数据库获取从开始日期到结束日期的值......
我得到这个输出......它显示当前日期
2009-11-01 00:00:00 SELECT * FROM border WHERE dateordered='2009-11-01 00:00:00'2011-05-04未找到记录2010-11-01 00:00: 00 但我给出的开始日期为 04-05-2011,结束日期为 05-05-2011
hi
how to Display data from a mysql database from start date to end date using php codeigniter
where user provides the start and end date through view page..
The start and end date are been fetched from the view page.... so it should be able to fetch the values from the start date till the end date from the mysql database.. ....
i get this output... it displays the current date
2009-11-01 00:00:00 SELECT * FROM border WHERE dateordered='2009-11-01 00:00:00'2011-05-04No Records Found2010-11-01 00:00:00
but i gave the start date as 04-05-2011 and end date 05-05-2011
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
就这样吧....
there you go....
$this->db->where("date BETWEEN '1970-01-01' AND '2011-05-11'");
我从未使用过 CodeIgnitet,但我相信它们使用这种方法来运行查询。
哦,我可能误解了你,如果这不是你想要的,请参阅其他人的答案,只需使用
ORDER BY datefield
并使用最旧的ASC
到最新的或DESC
从最新到最旧的。$this->db->where("date BETWEEN '1970-01-01' AND '2011-05-11'");
I've never used CodeIgnitet, but I believe they use this kind of method to run the query.
Oh, I might have misunderstood you, if this is not what your looking for, see the answer of the other guy, just use an
ORDER BY datefield
and useASC
from oldest to newest orDESC
for newest to oldest.