您现在的位置是:首页 > 教程 > 帝国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怎么调用当天发布的信息
首先用PHP读取计算出今天的日期,然后用帝国CMS循环出时间等于今天的时间的信息,$timedays=strtotime(date("Y-m-d",time()));//今天0点的时间点 -
帝国二次开发会员积分16777215的解决方法
这个问题也算是帝国的bug,下面告诉大家解决方法!找到,eclassqinfofun.php;用dreamweaver打开。 -
帝国CMS6.6和7.0用哪个好
帝国CMS7.0推出已经快半年,今天有客户问我应该选在哪一个版本比较好,他说因为论坛有太多人都提出帝国CMS7.0不太稳定的问题。今天我简单的给大家说说我的想法。 -
帝国CMS动态循环栏目伪静态地址的方法
帝国CMS动态版循环栏目伪静态地址$orderby=(int)$_GET[orderby];$tag=(int)$_GET[tag];$tese=(int)$_GET[tese];
留言与评论 (共有 条评论) |