我有这个代码,它是为了在我的网站上显示大多数阅读文章我需要的是让它在过去两天显示大多数阅读文章而不是整篇文章
<div id="content_2" class="content">
<ul>
<?php
$mysm=mysql_query("select id,n_id,title,image,status,date from news where viwe > 0 and status=1 order by viwe DESC LIMIT 0, 7 ");
while($mydm=mysql_fetch_object($mysm)){?>
<li class="">
答案 0 :(得分:0)
获取当前日期,将其减去2天并与日期列进行比较。
以下查询将返回过去2天内查看的帖子:
select id,n_id,title,image,status,date
from news where viwe > 0 and status=1
and date >= (CURDATE() - INTERVAL 2 DAY) order by viwe DESC LIMIT 0, 7;