帝国CMS灵动标签调用外部数据,学会这招你便是帝国cms高手了。帝国CMS的标签结合SQL查询,支撑调用一切数据库数据,今后想调用什么就调用什么。
办法一:调用Discuz的最新贴子
[e:loop={"selecttid,subject,datelinefromdiscuzdb.cdb_threadsorderbytiddesclimit10",10,24,0}][/e:loop]
discuzdb.cdb_threads为Discuz的贴子表名,其间“discuzdb”为Discuz的数据库称号。
limit 10为显现贴子数量。
假如用伪静态地址可以用:/bbs/thread--1-1.html
假如指定单个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.cdb_threadswhere fid=版块IDorder by tid desc limit 10假如指定多个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.cdb_threadswhere fid in (1,2,3)order by tid desc limit 10
办法二:调用Discuz最新含论坛版块名的帖子
[e:loop={"selecttid,subject,dateline,fidfromdiscuzdb.cdb_threadsorderbytiddesclimit10",10,24,0}] $fr=$empire->fetch1("selectnamefromdiscuzdb.cdb_forumswherefid='$bqr[fid]'"); ?> [/e:loop]
discuzdb.cdb_forums为Discuz的版块表名,其间“discuzdb”为Discuz的数据库称号。
办法三:调用PHPwind的最新贴子
[e:loop={"selecttid,subject,postdatefromphpwinddb.pw_threadsorderbytiddesclimit10",10,24,0}] [/e:loop]
phpwinddb.pw_threads为phpwind的贴子表名,其间“phpwinddb”为phpwind的数据库称号。
limit 10为显现贴子数量。
假如用伪静态地址可以用:/bbs/read-htm-tid-.html
假如指定单个版块的贴子,SQL用:select tid,subject,postdate from phpwinddb.pw_threadswhere fid=版块IDorder by tid desc limit 10假如指定多个版块的贴子,SQL用:select tid,subject,postdate from phpwinddb.pw_threadswhere fid in (1,2,3)order by tid desc limit 10
办法四:调用PHPwind的最新贴子(含调用论坛版块名)
[e:loop={"selecttid,subject,postdate,fidfromphpwinddb.pw_threadsorderbytiddesclimit10",10,24,0}] $fr=$empire->fetch1("selectnamefromphpwinddb.pw_forumswherefid='$bqr[fid]'"); ?> [/e:loop]
phpwinddb.pw_forums为phpwind的版块表名,其间“phpwinddb”为phpwind的数据库称号。
声明:有的资源均来自网络转载,版权归原作者所有,如有侵犯到您的权益 请联系邮箱:123456@qq.com 我们将配合处理!
原文地址:帝国CMS二次开发灵动标签调用外部数据发布于2022-06-12 07:43:54