您现在的位置是:首页 > 教程 > 帝国CMS教程帝国CMS教程
帝国CMS自定义列表的排序newstime时间,onclick点击或浏览,plnum 评论,diggtop
豪基2023-01-22 15:52:04帝国CMS教程已有人查阅
导读[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、p统计记录: select count(*) as total from [!db.pre!]ecms_movie
统计记录:
select count(*) as total from [!db.pre!]ecms_movie
查询记录:
select * from [!db.pre!]ecms_movie order by id desc
注释:[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)
desc - 降序排列 ASC - 升序排列
id desc 是按id降序排列 id ASC 是按id升序排列
举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、p统计记录: select count(*) as total from [!db.pre!]ecms_movie
查询记录:
select * from [!db.pre!]ecms_movie order by id desc
注释:[!db.pre!]ecms_movie 为数据表类型(movie是电影数据表)
desc - 降序排列 ASC - 升序排列
id desc 是按id降序排列 id ASC 是按id升序排列
举一反三排序方式:id(id)、newstime (时间)、onclick(点击或浏览)、plnum (评论)、diggtop 、rand (随机)
如:增加当前栏目(一般是错误的,因自定义列表不能用当前栏目这个参数,这是只是一个引用以备其他地方应用)
where classid='$GLOBALS[navclassid]'当前栏目
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]'
查询记录:
select * from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]' order by id desc
自定义列表调用多个栏目,或指定栏目(sql中指定的栏目ID必须为终极栏目ID)
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid in (23,24,25)
查询记录:
select * from [!db.pre!]ecms_movie where classid in (23,24,25) order by id desc
lnum (评论)、diggtop 、rand (随机)
如:增加当前栏目(一般是错误的,因自定义列表不能用当前栏目这个参数,这是只是一个引用以备其他地方应用)
where classid='$GLOBALS[navclassid]'当前栏目
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]'
查询记录:
select * from [!db.pre!]ecms_movie where classid='$GLOBALS[navclassid]' order by id desc
自定义列表调用多个栏目,或指定栏目(sql中指定的栏目ID必须为终极栏目ID)
统计记录:
select count(*) as total from [!db.pre!]ecms_movie where classid in (23,24,25)
查询记录:
select * from [!db.pre!]ecms_movie where classid in (23,24,25) order by id desc
本文标签:
很赞哦! ()
相关文章
随机图文
-
帝国CMS内容模板怎么获取所有分页数和当前分页号
有时候需要在内容页做一些漂亮的格式,或者特殊的应用,比如获取所有分页数量和当前分页号,当时帝国并没有给这两个功能的调用标签,那么如何来做呢? -
帝国cms增加底部访问数统计计数器的方法
如下图所示效果!下载压缩包解压到网站主目录tongji.rar 打开e/public/viewclick/index.php 在if($down==2) { $classf.=',checkpl'; }下面加入if($down==99){$r=$emp -
帝国CMS熊掌号怎么调用缩略图
调用newstext字段,把所有图片绝对路径替换成https://www.ebingou.cn/d/file/相对路径,然后在把相对链接替换为统一的绝对路径,下面开始循环数组。 -
帝国cms后台关闭金刚模式后一片空白的解决方法
今天在解决一些问题的时候需要关闭后台的金刚模式,点设置之后杯具开了,后台一片空白。通过查找发现小编使用的是谷歌浏览器,有保存表单账号密码功能。
留言与评论 (共有 条评论) |