来源:搜你想要的 点击数: 时间:07-07
帝国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_threadwhere fid=版块ID order by tid desc limit 10
如果指定多个版块的贴子,SQL用:select tid,subject,dateline from discuzdb.pre_forum_threadwhere 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_threadswhere fid=版块ID order 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的最新贴子(含调用论坛版块名)
- <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的数据库名称。
广告推介
最新发布
- 帝国网站管理系统常见问题
- 帝国CMS 7.0后台登录验证码不显示的解决方法
- 帝国CMS后台登录成功后又显示“您还未登录”的解决办法
- fdsf
- 帝国CMS7.5版栏目列表式新增支持附加SQL条件,更个性化
- 帝国CMS7.5版会员充值有效期升级,更完善
- 帝国CMS程序服务器迁移的方法
- 帝国CMS7.5版各系统模型新增记录信息审核人功能
- 帝国CMS模板组导入&导出&更换模板
- 帝国CMS7.5版采集功能升级,更灵活
图文信息
最新视频
- 2020年下半年电影院待映影片都有哪些?
- 2020年电影院有什么好看的电影推荐
- 有什么好看的电影推荐
- 推荐几部个人认为好看的电影,每一部都超经典!
- 有没有什么好看的电影推荐?
- 有哪些好看的电影值得推荐?
热门事件
- 大神介绍火火大丰麻将到底有没有挂—教你用辅助挂
- 大神介绍宝马棋牌到底有没有挂—教你用辅助挂
- 大神介绍集宁有规律挂吗?原来真的有挂
- 大神介绍一把棋牌麻将到底有没有挂—教你用辅助挂
- 大神介绍微乐跑得快到底有没有挂—教你用辅助挂
- 分享给你们乐翻天十三水是不是有挂—原来有挂技巧讲解