我现在有这个;
if ( (isset($_GET['future'])) && ($_GET['future'] == '1') )
{
$future = 'AND shows.show_date > CURDATE()';
$urlparam = '&future=1';
} else
{
$future = 'AND shows.show_date <= CURDATE()';
$urlparam = '';
}
但是,我需要它从最近的日期列出我的项目吗?
答案 0 :(得分:0)
更改您的mysqli查询以获取最近的日期显示。使用:
ORDER BY your-date-field ASC