search.php
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?  
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6.     描述:搜索列表
  7. */
  8. $parseTemplateName="search.html";
  9. $p->set_file("handle","search.html");
  10.                //*********分页所需条件***********
  11. $p->set_var("city_id",$cid.".html");
  12. $content = $_POST['cont']? $_POST['cont']:$_GET['cont'];
  13. if(!$content){
  14. MsgError("搜索内容不能为空");
  15. }
  16. $query = "f-search--cid-".$cid."--cont-".$content;
  17. $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 
  18.         ".$prefix."message.etime > '".time()."' and (".$prefix."city.cparent='".$cid."' or ".$prefix."message.cid='".$cid."')",1);//总条数
  19. $num = $db->fetch_array($number);
  20. $total = $num["count(mid)"];
  21. //列表内容由define_class解析
  22. $p->set_var("fenye",showpage($total,$pagesize,$page,$query));
  23. ?>