使用 php 显示 mysql 数据库中从开始日期到结束日期的数据,其中用户提供开始和结束日期

发布于 2024-11-06 13:05:31 字数 380 浏览 1 评论 0原文

你好 如何使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

因为看清所以看轻 2024-11-13 13:05:31
$sql = 'SELECT * FROM table ORDER BY start_date ASC';
$q = $this->db->query($sql);

$results = ($q ? $q->result() : FALSE);

就这样吧....

$sql = 'SELECT * FROM table ORDER BY start_date ASC';
$q = $this->db->query($sql);

$results = ($q ? $q->result() : FALSE);

there you go....

荒岛晴空 2024-11-13 13:05:31

$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 use ASC from oldest to newest or DESC for newest to oldest.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文