答案:在根目录下有一个文件夹为plus,里面有一个search.php文件,这个文件就是实现CMS搜索的内部文件。然后在你的表单代码中加入
创新互联公司坚持“要么做到,要么别承诺”的工作理念,服务领域包括:网站设计、成都做网站、企业官网、英文网站、手机端网站、网站推广等服务,满足客户于互联网时代的象州网站设计、移动媒体设计的需求,帮助企业找到有效的互联网解决方案。努力成为您成熟可靠的网络建设合作伙伴!
form id="search" name="search" method="post"
action="/plus/search.php"
input type="text" name="keyword"/input type="submit"value=""//form这样就可以实现搜素功能了,然后新建一个search.htm模板,你提交之后,PHP脚本会自动调用搜索模板显示页面。
帝国cms搜索功能设置:
form action='/e/sch/index.php'
method="GET"
name="search_news"table
width="100%" border="0" cellspacing="6"
cellpadding="0"trtdheight="32"关键字:input
name="keyboard" type="text" value="" /selectname="field"optionvalue="1"全文/optionoptionvalue="2"标题/optionoptionvalue="3"内容/option
form action='/e/search/index.php' method="post" name="search_news" id="search_news"
input type="hidden" name="show" value="title" style="display:none;" /
input name="keyboard" type="text" class="search-keyword" id="keyboard" value="在这里搜索..." onfocus="if(this.value=='在这里搜索...'){this.value='';}" onblur="if(this.value==''){this.value='在这里搜索...';}" /
input type="submit" name="Submit22" value="" class="s_sumbit"/
/form
你把上面的form放到相应的位置即可。这就是帝国cms的搜索。
form id="searchform" name="searchform" method="post" action="/e/search/index.php" target="_blank"
input style="float:left;" class="main text" maxlength="70" size="42" type="text" name="keyboard" id="keyboard" value="" /
input type="hidden" name="show" value="title,smalltext" /
input type="hidden" name="tempid" value="1" /
input style="float:left;" type="image" value=" 搜 索 " src="/images/img/searchbutton.jpg" //form
上面代码是搜索标题和简介的,你说的全站搜索,只能搜索标题和简介,内容是无法参与搜索的