帝国cms搜索无数据 帝国cms移动端WAP内容模板调用栏目缩略图和栏目简介方法

帝国CMS教程

帝国cms手机端如何调用栏目缩略图和栏目?

这里介绍下在帝国cms手机端WAP中内容页模板调用栏目缩略图和栏目简介方法,代码如下:

  1. <?php
  2. $cr=$empire->fetch1("select classimg from {$dbtbpre}enewsclass where classid='".$r['classid']."' limit 1");
  3. ?>
  4. 栏目缩放图:<img src="<?=$cr[classimg]?>">
  5. <?
  6. $classr=$empire->fetch1("select intro from {$dbtbpre}enewsclass where classid='".$navinfor[classid]."' limit 1");
  7. ?>
  8. 栏目简介:<?=DoWapRepNewstext($classr[intro])?>