我需要相反的日期

时间:2016-12-06 09:37:23

标签: php mysqli

我现在有这个;

if ( (isset($_GET['future'])) && ($_GET['future'] == '1') )
{
    $future = 'AND shows.show_date > CURDATE()';
    $urlparam = '&future=1';
} else
{
    $future = 'AND shows.show_date <= CURDATE()';
    $urlparam = '';
}

但是,我需要它从最近的日期列出我的项目吗?

1 个答案:

答案 0 :(得分:0)

更改您的mysqli查询以获取最近的日期显示。使用:

ORDER BY your-date-field ASC