功能:帝國cms靈動(dòng)標(biāo)簽調(diào)用副表字段內(nèi)容
1.在帝國cms里靈動(dòng)標(biāo)簽循環(huán)內(nèi)用SQL讀取副表內(nèi)容
2.列表模板或標(biāo)簽?zāi)0逯姓{(diào)用副表字段內(nèi)容
原理:在靈動(dòng)標(biāo)簽循環(huán)內(nèi)用SQL讀取副表內(nèi)容。下面以讀取新聞副表中的newstext字段為例:
[e:loop={0,1,3,0}] $fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$bqr[stb]} where id='$bqr[id]'"); ?>
<?php
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$bqr[stb]} where id='$bqr[id]'");
?>
標(biāo)題:<?=$bqr[title]?><br>
副表內(nèi)容字段:<?=$fr[newstext]?>
[/e:loop]
如何在列表模板或標(biāo)簽?zāi)0逯姓{(diào)用副表字段內(nèi)容
列表模板中要調(diào)用副表字段內(nèi)容需要采用“list.var支持程序代碼”。下面以讀取新聞副表中的newstext字段為例的list.var模板代碼:
$fr=$empire->fetch1("select newstext from {$dbtbpre}ecms_news_data_{$r[stb]} where id='$r[id]'");
$listtemp='<a href="[!–titleurl–]">[!–title–]</a> <br>副表內(nèi)容字段:'.$fr[newstext].'';