ECMS 6.6/灵动标签调用外部数据

来自站长百科
跳转至: 导航、​ 搜索

ECMS 6.6| 安装| 使用| 升级与整合| 新版解密教程|模板标签说明|二次开发| FAQ

灵动标签调用外部数据

帝国CMS标签SQL查询调用支持调用mysql数据库的所有数据,本节通过用灵动标签的SQL语句查询来讲解调用方法。

用灵动标签调用外部数据:

例一:调用Discuz的最新贴子

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,dateline from discuzdb.cdb_threads order by tid desc limit 10",10,24,0}]
<tr><td>
<a href="/bbs/viewthread.php?tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[dateline])?>)
</td></tr>
[/e:loop]
</table>

discuzdb.cdb_threads为Discuz的贴子表名,其中“discuzdb”为Discuz的数据库名称。

limit 10为显示贴子数量。

如果用伪静态地址可以用:/bbs/thread-<?=$bqr[tid]?>-1-1.html

如果指定单个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.cdb_threads where fid=版块ID order 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的最新贴子(含调用论坛版块名)

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,dateline,fid from discuzdb.cdb_threads order by tid desc limit 10",10,24,0}]
<?php
$fr=$empire->fetch1("select name from discuzdb.cdb_forums where fid='$bqr[fid]'");
?>
<tr><td>
[<?=$fr[name]?>] <a href="/bbs/viewthread.php?tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[dateline])?>)
</td></tr>
[/e:loop]
</table>

discuzdb.cdb_forums为Discuz的版块表名,其中“discuzdb”为Discuz的数据库名称。


例三:调用DiscuzX的最新贴子

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,dateline from discuzdb.pre_forum_thread order by tid desc limit 10",10,24,0}]
<tr><td>
<a href="/bbs/forum.php?mod=viewthread&tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[dateline])?>)
</td></tr>
[/e:loop]
</table>

discuzdb.pre_forum_thread为DiscuzX的贴子表名,其中“discuzdb”为DiscuzX的数据库名称。

limit 10为显示贴子数量。

如果用伪静态地址可以用:/bbs/thread-<?=$bqr[tid]?>-1-1.html

如果指定单个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.pre_forum_thread where fid=版块ID order by tid desc limit 10

如果指定多个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.pre_forum_thread where fid in (1,2,3) order by tid desc limit 10


例四:调用DiscuzX的最新贴子(含调用论坛版块名)

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,dateline,fid from discuzdb.pre_forum_thread order by tid desc limit 10",10,24,0}]
<?php
$fr=$empire->fetch1("select name from discuzdb.pre_forum_forum where fid='$bqr[fid]'");
?>
<tr><td>
[<?=$fr[name]?>] <a href="/bbs/forum.php?mod=viewthread&tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[dateline])?>)
</td></tr>
[/e:loop]
</table>

discuzdb.pre_forum_forum为DiscuzX的版块表名,其中“discuzdb”为DiscuzX的数据库名称。


例五:调用PHPwind的最新贴子

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,postdate from phpwinddb.pw_threads order by tid desc limit 10",10,24,0}]
<tr><td>
<a href="/bbs/read.php?tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[postdate])?>)
</td></tr>
[/e:loop]
</table>

phpwinddb.pw_threads为phpwind的贴子表名,其中“phpwinddb”为phpwind的数据库名称。

limit 10为显示贴子数量。

如果用伪静态地址可以用:/bbs/read-htm-tid-<?=$bqr[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的最新贴子(含调用论坛版块名)

<table width="100%" border="0" cellspacing="1" cellpadding="3">
[e:loop={"select tid,subject,postdate,fid from phpwinddb.pw_threads order by tid desc limit 10",10,24,0}]
<?php
$fr=$empire->fetch1("select name from phpwinddb.pw_forums where fid='$bqr[fid]'");
?>
<tr><td>
[<?=$fr[name]?>] <a href="/bbs/read.php?tid=<?=$bqr[tid]?>" target="_blank"><?=$bqr[subject]?></a> (<?=date('Y-m-d',$bqr[postdate])?>)
</td></tr>
[/e:loop]
</table>

phpwinddb.pw_forums为phpwind的版块表名,其中“phpwinddb”为phpwind的数据库名称。


参考来源[ ]

ECMS 6.6使用手册导航

安装:

ECMS 6.6 安装

使用:

ECMS建站流程|后台菜单介绍|前台菜单介绍|专业术语介绍|后台栏目管理|后台信息管理|后台专题管理|其他管理操作|采集管理|插件管理|管理员后台操作|管理员后台其他操作管理|后台用户管理|后台会员管理|系统安全设置

升级与整合

打通多个帝国CMS系统的会员整合与同步教程|整合Ucenter接口教程|整合Discuz通行证接口教程|整合PHPwind通行证接口教程|万能会员接口|论坛通行证接口|会员数据从文本文件导入帝国CMS的插件

新版解密教程

教程模型使用相关解密教程|教程模板使用相关解密教程|管理相关解密教程

模板标签说明

网站模板说明|其他模板说明|调用标签使用说明

二次开发

系统目录结构|常用函数介绍|扩展SQL程序编写介绍|插件二次开发格式建议|显示“Hello,world”|显示最新10条新闻|分类信息分页列表

FAQ

ECMS 6.6 FAQ