在搜索框表单里加个typeid提交过去
1 2 3 | <form name="formsearch" action="/plus/search.php"> <input type="hidden" name="typeid" value="1,2,3"> </form> |
在/plus/search.php 找到
$typeid = (isset($typeid) && is_numeric($typeid)) ? $typeid : 0;
注销或者删除它
继续找到
$typeid = intval($typeid);
注销或者删除它
最后打开 \include\arc.searchview.class.php 找到
$ksqls[] = " typeid IN (".GetSonIds($this->TypeID).") ";
改成
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //指定了多个栏目时 if( preg_match('#,#', $this->TypeID) ) { $typeids = explode(',', $this->TypeID); foreach($typeids as $ttid) { $typeidss[] = GetSonIds($ttid); } $typeidStr = join(',', $typeidss); $typeidss = explode(',', $typeidStr); $typeidssok = array_unique($typeidss); $typeid = join(',', $typeidssok); $ksqls[] = " arc.typeid IN ($typeid) "; } else { $ksqls[] = " arc.typeid IN (".GetSonIds($this->TypeID).") "; } |
完成
版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: 织梦搜索指定多个栏目的文档