通过本教程可以使用自定义列表调用指定时间内发布的信息,比如,1周内发表的信息,1个月内发表的信息

统计记录:

select count(*) as total from [!db.pre!]ecms_shop where newstime>UNIX_TIMESTAMP()-86400*90

查询记录:

select * from [!db.pre!]ecms_shop where newstime>UNIX_TIMESTAMP()-86400*90 order by id desc

这个就是调用商品数据表下,3个月内发布的信息。