PHPCMS V9 搜索功能

首页搜索模版里面写入:




搜索search 文件夹

index.html //搜索主页面 跟搜索主页一个模版

list.html // 搜索列表页



    {pc:get sql="SELECT * FROM `v9_news` where title like '%$q%' order by id DESC " num="10" page="$page" return="data"}
    {if $data==""}

    没有找到和{$q}相关的文章,请减短关键词或换个词组!


    {/if}


    {loop $data $v}
  • {$v[title]}

  • {/loop}
    {/pc}


{$pages}

你可能感兴趣的:(PHPCMS V9 搜索功能)