有时候记不住帝国的标签或者有些内容没有对应的模板标签,怎么办?写SQL读取出来。
比如在栏目封面或者列表模板,要读取当前栏目的栏目内容,直接用PHP读取出来:
<?php
$cr=$empire->fetch1("select classtext from phome_enewsclassadd where classid='$GLOBALS[navclassid]'");
echo $cr['classtext'];
?>
也可以结合灵动标签读取出来:
[e:loop={"select classtext from phome_enewsclassadd where classid='$GLOBALS[navclassid]'",1,24,0}]
<?=$bqr[classtext]?>
[/e:loop]
其中$GLOBALS[navclassid]表示当前栏目ID