名站分类目录为大家提供帝国cms系统程序各种教程,帝国安装教程,帝国插件教程,帝国模板说明等。
帝国CMS栏目怎么调用关键词?(帝国CMS栏目调用关键字词并且分割逗号的方法)
很多的网友经常问到,帝国CMS栏目怎么调用关键词呢?有什么好的方法实现?其实这个问题不难实现,下面就由帝国CMS模板网小编来告诉大家帝国CMS栏目调用关键字词并且分割逗号的方法,一起来看看吧:
直接用变量[!--class.keywords--]调用,显示结果显示“帝国模板,帝国CMS模板,帝国CMS模板名站网址导航”
<?php程序 $cr=$empire->fetch1("select classpagekey from {$dbtbpre}enewsclass where classid='$GLOBALS[navclassid]'"); echo $cr[classpagekey]; ?>
按逗号分离字符串:
<?php程序 $source = "帝国模板,帝国CMS模板,帝国CMS模板名站网址导航";//按逗号分离字符串 $hello = explode(',',$source); for($index=0;$index<count($hello);$index ) { echo "<li>"; echo $hello[$index];echo "</li>"; } ?>
最后,在帝国cms系统程序,再结合sql查询语句:
<?php程序 $cr=$empire->fetch1("select classpagekey from {$dbtbpre}enewsclass where classid='$GLOBALS[navclassid]'"); $source=$cr[classpagekey]; $hello = explode(',',$source); for($index=0;$index<count($hello);$index ) { echo "<li>"; echo $hello[$index];echo "</li>"; } ?>
链接同步tags标签,如果没有建立标签,就需要到后台手动建立tags,然后系统自动匹配:
<?php程序 $cr=$empire->fetch1("select classpagekey from {$dbtbpre}enewsclass where classid='$GLOBALS[navclassid]'"); $source=$cr[classpagekey]; $hello = explode(',',$source); for($index=0;$index<count($hello);$index ) { echo "<li><a href='/e/tags/?tagname=$hello[$index]&tempid=8'>"; echo $hello[$index];echo "</a></li>"; } ?>
OK!搞定!大家赶紧去测试看看效果!
好了这篇帝国的教程就说到这里,希望可以帮助大家。声明.本站内容来自互联网,目的是分享阅读,如果侵犯了你的权益请联系本站删除。,帝国CMS,关键词,分割逗号帝国CMS灵动标签怎么附加SQL条件调用?(帝国CMS灵动标签附加SQL条件的方法)
很多的小伙伴经常问到,帝国CMS灵动标签怎么附加SQL条件呢?其实方法不难,举个例子,帝国CMS模板网的特别推荐,本站之前用的是变量调用固定的id,因此这个情况会有些用户会觉得不太方便,所以呢,可以改成推荐调用,6条文章,就用6级推荐,这样就简单了,下面直接放实例,大家自行套用即可: