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

前端之家收集整理的这篇文章主要介绍了PHPCMS中文标签实现各类排行榜前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

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

  新建标签 通过自定义语句

  总排行榜: (通过 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,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表字段

猜你在找的Dedecms相关文章