程序员人生 网站导航

PHPCMS中文标签实现各类排行榜

栏目:DedeCMS时间:2014-04-10 13:33:43

  中文标签实现总下载排行榜 日下载排行榜 周下载排行榜 月下载排行榜

  新建标签 通过自定义语句

  总排行榜: (通过 phpcms_content_count 表中的hits字段进行降序 此字段是总的下载数 )

以下为引用的内容:
SELECT a.contentid,a.catid,a.typeid,a.areaid,a.title,a.style,a.thumb,a.keywords,a.description,a.userid,a.updatetime,a.inputtime,a.url,a.listorder,b.hits FROM `phpcms_content` a,phpcms_content_count b WHERE a.contentid=b.contentid AND status=99 ".get_sql_catid(265)." ORDER BY b.hits DESC

  月下载排行榜 与上雷同 字段换成  hits_month(此字段是月下载数)

以下为引用的内容:
SELECT a.contentid,a.catid,a.typeid,a.areaid,a.title,a.style,a.thumb,a.keywords,a.description,a.userid,a.updatetime,a.inputtime,a.url,a.listorder,b.hits_month FROM `phpcms_content` a,phpcms_content_count b WHERE a.contentid=b.contentid AND status=99 ".get_sql_catid(265)." ORDER BY b.hits_month DESC

  以下类推..见  phpcms_content_count表字段

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐