search.php
资源名称:BBWPS.rar [点击查看]
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
PHP
- <?
- /*
- [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
- This is NOT a freeware, use is subject to license terms
- 时间:2007年12月
- 描述:搜索列表
- */
- $parseTemplateName="search.html";
- $p->set_file("handle","search.html");
- //*********分页所需条件***********
- $p->set_var("city_id",$cid.".html");
- $content = $_POST['cont']? $_POST['cont']:$_GET['cont'];
- if(!$content){
- MsgError("搜索内容不能为空");
- }
- $query = "f-search--cid-".$cid."--cont-".$content;
- $number = $db->query("select count(mid) from ".$prefix."message left join ".$prefix."city on ".$prefix."city.cid=".$prefix."message.cid where title like '%$content%' and
- ".$prefix."message.etime > '".time()."' and (".$prefix."city.cparent='".$cid."' or ".$prefix."message.cid='".$cid."')",1);//总条数
- $num = $db->fetch_array($number);
- $total = $num["count(mid)"];
- //列表内容由define_class解析
- $p->set_var("fenye",showpage($total,$pagesize,$page,$query));
- ?>