帝国CMS灵动标签SQL调用所有数据表数据

再看那柔弱的柳树吧,在寒冬余威尚盛时节,就早早苏醒过来,望着冰冻的河面,迎着凛冽的寒风,它微微察觉出一丝春意,于是,不顾一切地率先吐翠,淡淡地披起娇黄嫩绿的新装。沿河望去,枝梢间烟纱雾彀,一片生机,这情景仿佛一首动人的歌,一首热烈向往春天的歌,一首报告春的信息的歌,一首表达美好信念的歌。我在想:既然迎春花被人称作报春花,那么,柳树可不可以叫作报春树呢春来了,万千柳枝在春风中袅袅舞动。柳树是热爱春天的,春天也是热爱柳树的。

帝国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 rel="nofollow noopener noreferrer" 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 rel="nofollow noopener noreferrer" 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 rel="nofollow noopener noreferrer" 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 rel="nofollow noopener noreferrer" 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 rel="nofollow noopener noreferrer" 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 rel="nofollow noopener noreferrer" 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灵动标签SQL调用所有数据表数据。因害怕失败而不敢放手一搏,永远不会成功。更多关于帝国CMS灵动标签SQL调用所有数据表数据请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
帝国CMS正文图片自动加alt为标题,支持新增和修改!

帝国CMS播放字段onlinepath添加自动“第N集”播放名称的方法

帝国CMS栏目自定义字段说明好代码教程

帝国CMS制作字母导航功能

帝国CMS管理系统简单的设置操作说明!