您现在的位置是:首页 > cms教程 > 帝国CMS教程帝国CMS教程
帝国CMS灵动标签调用外部数据的方法
从安2023-05-26 17:05:02帝国CMS教程已有人查阅
导读帝国CMS灵动标签调用外部数据,学会这招你就是帝国cms高手了。帝国CMS的标签结合SQL查询,支持调用所有数据库数据,以后想调用什么就调用什么。
帝国CMS灵动标签调用外部数据,学会这招你就是帝国cms高手了。帝国CMS的标签结合SQL查询,支持调用所有数据库数据,以后想调用什么就调用什么。
方法一:调用Discuz的最新贴子
[e:loop={"select tid,subject,dateline from discuzdb.cdb_threads order by tid desc limit 10",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_threads where fid=版块IDorder by tid desc limit 10如果指定多个版块的贴子,SQL用:
select tid,subject,dateline from discuzdb.cdb_threads where fid in (1,2,3)order by tid desc limit 10
方法二:调用Discuz最新含论坛版块名的帖子
[e:loop={"select tid,subject,dateline,fid from discuzdb.cdb_threads order by tid desc limit 10",10,24,0}]
$fr=$empire->fetch1("select name from discuzdb.cdb_forums where fid='$bqr[fid]'");
?>
[/e:loop]
discuzdb.cdb_forums为Discuz的版块表名,其中“discuzdb”为Discuz的数据库名称。
方法三:调用PHPwind的最新贴子
[e:loop={"select tid,subject,postdate from phpwinddb.pw_threads order by tid desc limit 10",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_threads where fid=版块ID order by tid desc limit 10如果指定多个版块的贴子,SQL用:select tid,subject,postdate from phpwinddb.pw_threads where fid in (1,2,3) order by tid desc limit 10
方法四:调用PHPwind的最新贴子(含调用论坛版块名)
[e:loop={"select tid,subject,postdate,fid from phpwinddb.pw_threads order by tid desc limit 10",10,24,0}]
$fr=$empire->fetch1("select name from phpwinddb.pw_forums where fid='$bqr[fid]'");
?>
[/e:loop]
phpwinddb.pw_forums为phpwind的版块表名,其中“phpwinddb”为phpwind的数据库名称。
本文标签:
很赞哦! ()
相关文章
随机图文
帝国CMS怎么判断文章前台投稿还是后台发布的方法
帝国CMS怎么判断文章前台投稿还是后台发布的方法帝国CMS怎么给会员字段加编辑器的方法
帝国的会员字段很遗憾没有加编辑的功能,不过万能的站长总会有解决的办法,看以下的办法,其实非常简单,但安全性的妥协需要自己把控了帝国cms数据表phome_enewspl_set评论参数设置表
phome_enewspl_set评论参数设置表字段名字段类型解释idtinyint(3) unsignedIDpltimesmallint(5) unsigned评论时间间隔,单位:秒plsizesmallint(5) unsigned评论内容限制字数pl帝国CMS批量提取正文内容到简介的方法
最近接到一个帝国cms模板改版项目,自带的数据可能是采集的,以前的简介字段内容只截取了60个字,新模板的简介60字符太少了
留言与评论 (共有 条评论) |