destoon實(shí)現(xiàn)調(diào)用熱門關(guān)鍵字的方法
本文所述的destoon調(diào)用熱門關(guān)鍵字的方法是根據(jù)數(shù)據(jù)庫里面的保存的搜索的關(guān)鍵字來顯示的。
每個(gè)模塊下面都有各自的關(guān)鍵字
下面是調(diào)用的標(biāo)簽:
<!--{tag("moduleid=$searchid&table=keyword&condition=moduleid=$searchid and status=3&pagesize=9&order=total_search desc&template=index-keyword")}-->
注意:此處的pagesize=9是調(diào)用的關(guān)鍵字的顯示的條數(shù),你可以根據(jù)自己的需要自行修改
template=index-keyword 模板是名為index-keyword.htm的文件
index-keyword.html里面的內(nèi)容為:
{loop $tags $t} {php $lian=$t[moduleid]} <li><a href="{$MODULE[$lian][linkurl]}search.php?kw={$t[keyword]}" rel="external nofollow" title="{$t[keyword]}">{$t[keyword]}</a></li> {/loop}
最終效果為:
- destoon文章模塊調(diào)用企業(yè)會(huì)員資料的方法
- destoon實(shí)現(xiàn)調(diào)用圖文新聞的方法
- destoon調(diào)用discuz論壇中帶圖片帖子的實(shí)現(xiàn)方法
- destoon調(diào)用企業(yè)會(huì)員公司形象圖片的實(shí)現(xiàn)方法
- destoon實(shí)現(xiàn)調(diào)用當(dāng)前欄目分類及子分類和三級(jí)分類的方法
- destoon首頁調(diào)用求購供應(yīng)信息的地區(qū)名稱的方法
- destoon實(shí)現(xiàn)調(diào)用自增數(shù)字從1開始的方法
- destoon實(shí)現(xiàn)資訊信息前面調(diào)用它所屬分類的方法
- destoon調(diào)用自定義模板及樣式的公告欄
- destoon二次開發(fā)模板及調(diào)用語法匯總
- destoon各類調(diào)用匯總
- destoon供應(yīng)信息title調(diào)用出公司名稱的方法
相關(guān)文章
PHP迭代器實(shí)現(xiàn)斐波納契數(shù)列的函數(shù)
斐波納契數(shù)列通常做法是用遞歸實(shí)現(xiàn),當(dāng)然還有其它的方法。這里現(xiàn)學(xué)現(xiàn)賣,用PHP的迭代器來實(shí)現(xiàn)一個(gè)斐波納契數(shù)列,幾乎沒有什么難度,只是把類里的next()方法重寫了一次。注釋已經(jīng)寫到代碼中,也是相當(dāng)好理解的2013-11-11PHP實(shí)現(xiàn)的網(wǎng)站目錄掃描索引工具
本文給大家分享的是一個(gè)基于PHP實(shí)現(xiàn)的網(wǎng)站目錄掃描索引工具的源碼,非常的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下2016-09-09ThinkPHP調(diào)用common/common.php函數(shù)提示錯(cuò)誤function undefined的解決方法
這篇文章主要介紹了ThinkPHP調(diào)用common/common.php函數(shù)提示錯(cuò)誤function undefined的解決方法,是進(jìn)行ThinkPHP程序設(shè)計(jì)的升級(jí)過程中經(jīng)常會(huì)遇到的問題,需要的朋友可以參考下2014-08-08PHP中使用socket方式GET、POST數(shù)據(jù)實(shí)例
這篇文章主要介紹了PHP中使用socket方式GET、POST數(shù)據(jù)實(shí)例,本文分別給出GET方式和POST方式的代碼實(shí)例,需要的朋友可以參考下2015-04-04

laravel model模型處理之修改查詢或修改字段時(shí)的類型格式案例

ajax+php實(shí)現(xiàn)無刷新驗(yàn)證手機(jī)號(hào)的實(shí)例