index.php 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280
  1. <?php
  2. require("../class/connect.php");
  3. if(!defined('InEmpireCMS'))
  4. {
  5. exit();
  6. }
  7. require("../class/db_sql.php");
  8. require("../data/dbcache/class.php");
  9. require LoadLang("pub/fun.php");
  10. require("../class/schallfun.php");
  11. $link=db_connect();
  12. $empire=new mysqlquery();
  13. eCheckCloseMods('sch');//关闭模块
  14. $searchtime=time();
  15. $totalnum=(int)$_GET['totalnum'];
  16. $sear=(int)$_GET['sear'];
  17. if(!$public_r['usetotalnum'])
  18. {
  19. $totalnum=0;
  20. }
  21. $firstsearch=0;
  22. if($sear<1)
  23. {
  24. $firstsearch=1;
  25. //搜索间隔
  26. $lastsearchtime=(int)getcvar('lastschalltime');
  27. if($lastsearchtime)
  28. {
  29. if($searchtime-$lastsearchtime<$public_r[schalltime])
  30. {
  31. printerror('SchallOutTime','',1);
  32. }
  33. }
  34. //设置最后搜索时间
  35. esetcookie('lastschalltime',$searchtime,$searchtime+3600*24);
  36. }
  37. $page=(int)$_GET['page'];
  38. $page=RepPIntvar($page);
  39. $start=0;
  40. $page_line=$public_r['schallpagenum'];//每页显示链接数
  41. $line=$public_r['schallnum'];//每页显示记录数
  42. $offset=$start+$page*$line;//总偏移量
  43. //编码
  44. $iconv='';
  45. $char='';
  46. $targetchar='';
  47. if($ecms_config['sets']['pagechar']!='gb2312')
  48. {
  49. include_once(ECMS_PATH.'e/class/doiconv.php');
  50. $iconv=new Chinese('');
  51. $char=$ecms_config['sets']['pagechar']=='big5'?'BIG5':'UTF8';
  52. $targetchar='GB2312';
  53. }
  54. $schallr=ReturnSearchAllSql($_GET);
  55. require("../data/dbcache/SearchAllTb.php");
  56. $keyboard=$schallr['keyboard'];
  57. $query="select id,classid from {$dbtbpre}enewssearchall where ".$schallr['where'];
  58. if($totalnum<1)
  59. {
  60. $totalquery="select count(*) as total from {$dbtbpre}enewssearchall where ".$schallr['where'];
  61. $num=$empire->gettotal($totalquery);
  62. if(empty($num))
  63. {
  64. printerror('SchallNotRecord','',1);
  65. }
  66. }
  67. else
  68. {
  69. $num=$totalnum;
  70. }
  71. $search=$schallr['search'].'&sear=1';
  72. if($public_r['usetotalnum'])
  73. {
  74. $search.='&totalnum='.$num;
  75. }
  76. //checkpageno
  77. eCheckListPageNo($page,$line,$num);
  78. $query.=" order by infotime desc limit $offset,$line";
  79. $sql=$empire->query($query);
  80. $listpage=page1($num,$line,$page_line,$start,$page,$search);
  81. $url="<a href='".ReturnSiteIndexUrl()."'>".$fun_r['index']."</a>&nbsp;>&nbsp;".$fun_r['SearchAllNav'];
  82. ?>
  83. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  84. <html xmlns="http://www.w3.org/1999/xhtml">
  85. <head>
  86. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  87. <title>搜索 - Powered by EmpireCMS</title>
  88. <link href="/skin/default/css/style.css" rel="stylesheet" type="text/css" />
  89. <script type="text/javascript" src="/skin/default/js/tabs.js"></script>
  90. <style type="text/css">
  91. <!--
  92. .r {
  93. display:inline;
  94. font-weight:normal;
  95. margin:0;
  96. font-size:16px;
  97. margin-top:10px;
  98. }
  99. .a{color:green}
  100. .fl{color:#77c}
  101. -->
  102. </style>
  103. </head>
  104. <body class="listpage">
  105. <!-- 页头 -->
  106. <table width="100%" border="0" cellspacing="0" cellpadding="0" class="top">
  107. <tr>
  108. <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
  109. <tr>
  110. <td width="63%">
  111. <!-- 登录 -->
  112. <script>
  113. document.write('<script src="/e/member/login/loginjs.php?t='+Math.random()+'"><'+'/script>');
  114. </script>
  115. </td>
  116. <td align="right">
  117. <a onclick="window.external.addFavorite(location.href,document.title)" href="#ecms">加入收藏</a> | <a onclick="this.style.behavior='url(#default#homepage)';this.setHomePage('/')" href="#ecms">设为首页</a> | <a href="/e/member/cp/">会员中心</a> | <a href="/e/DoInfo/">我要投稿</a> | <a href="/e/web/?type=rss2" target="_blank">RSS<img src="/skin/default/images/rss.gif" border="0" hspace="2" /></a>
  118. </td>
  119. </tr>
  120. </table></td>
  121. </tr>
  122. </table>
  123. <table width="100%" border="0" cellpadding="0" cellspacing="10">
  124. <tr valign="middle">
  125. <td width="240" align="center"><a href="/"><img src="/skin/default/images/logo.gif" width="200" height="65" border="0" /></a></td>
  126. <td align="center"><a href="http://www.phome.net/OpenSource/" target="_blank"><img src="/skin/default/images/opensource.gif" width="100%" height="70" border="0" /></a></td>
  127. </tr>
  128. </table>
  129. <!-- 导航tab选项卡 -->
  130. <table width="920" border="0" align="center" cellpadding="0" cellspacing="0" class="nav">
  131. <tr>
  132. <td class="nav_global"><ul>
  133. <li class="curr" id="tabnav_btn_0" onmouseover="tabit(this)"><a href="/">首页</a></li>
  134. <li id="tabnav_btn_1" onmouseover="tabit(this)"><a href="/news/">新闻中心</a></li>
  135. <li id="tabnav_btn_2" onmouseover="tabit(this)"><a href="/download/">下载中心</a></li>
  136. <li id="tabnav_btn_3" onmouseover="tabit(this)"><a href="/movie/">影视频道</a></li>
  137. <li id="tabnav_btn_4" onmouseover="tabit(this)"><a href="/shop/">网上商城</a></li>
  138. <li id="tabnav_btn_5" onmouseover="tabit(this)"><a href="/flash/">FLASH频道</a></li>
  139. <li id="tabnav_btn_6" onmouseover="tabit(this)"><a href="/photo/">图片频道</a></li>
  140. <li id="tabnav_btn_7" onmouseover="tabit(this)"><a href="/article/">文章中心</a></li>
  141. <li id="tabnav_btn_8" onmouseover="tabit(this)"><a href="/info/">分类信息</a></li>
  142. </ul></td>
  143. </tr>
  144. </table>
  145. <table width="100%" border="0" cellspacing="10" cellpadding="0">
  146. <tr valign="top">
  147. <td class="list_content"><table width="100%" border="0" cellspacing="0" cellpadding="0" class="position">
  148. <tr>
  149. <td>现在的位置:<a href="/">首页</a>&nbsp;>&nbsp;搜索</td>
  150. </tr>
  151. </table>
  152. <table width="100%" border="0" cellspacing="0" cellpadding="0" class="box">
  153. <tr>
  154. <td><form action='index.php' method="GET" name="search_news" id="search_news">
  155. <table width="100%" border="0" cellspacing="6" cellpadding="0">
  156. <tr>
  157. <td height="32">关键字:
  158. <input name="keyboard" type="text" id="keyboard" value="<?=$keyboard?>" size="42" />
  159. <select name="field" id="field">
  160. <option value="1">全文</option>
  161. <option value="2">标题</option>
  162. <option value="3">内容</option>
  163. </select>
  164. <input type="submit" name="Submit22" value="搜索" />
  165. <font color="#666666">(多个关键字请用&quot;空格&quot;隔开)</font> </td>
  166. </tr>
  167. </table>
  168. </form>
  169. <table width="100%" border="0" cellpadding="0" cellspacing="6">
  170. <tr>
  171. <td>系统搜索到约有<strong><?=$num?></strong>项符合<strong><?=$keyboard?></strong>的查询结果</td>
  172. </tr>
  173. </table>
  174. <?php
  175. $no=$offset;
  176. $subnum=120;
  177. $formatdate="Y-m-d H:i:s";
  178. while($r=$empire->fetch($sql))
  179. {
  180. $tbname=$class_r[$r[classid]]['tbname'];
  181. if(empty($tbname))
  182. {
  183. continue;
  184. }
  185. $titlefield=$schalltb_r[$tbname]['titlefield'];
  186. $smalltextfield=$schalltb_r[$tbname]['smalltextfield'];
  187. $infor=$empire->fetch1("select id,classid,titlepic,newstime,isurl,titleurl,".$titlefield.",".$smalltextfield." from {$dbtbpre}ecms_".$tbname." where id='$r[id]' limit 1");
  188. if(empty($infor['id']))
  189. {
  190. continue;
  191. }
  192. $no++;
  193. $titleurl=sys_ReturnBqTitleLink($infor);
  194. $titlepic=$infor['titlepic']?$infor['titlepic']:$public_r['newsurl']."e/data/images/notimg.gif";
  195. $smalltext=SubSchallSmalltext($infor[$smalltextfield],$subnum);
  196. $title=DoReplaceFontRed($infor[$titlefield],$keyboard);
  197. $smalltext=DoReplaceFontRed($smalltext,$keyboard);
  198. $newstime=date($formatdate,$infor['newstime']);
  199. ?>
  200. <h2 class="r"><span><?=$no?>.</span> <a class="l" href="<?=$titleurl?>" target="_blank"><?=$title?></a></h2>
  201. <table width="80%" border="0" cellpadding="0" cellspacing="0">
  202. <tbody>
  203. <tr>
  204. <td><?=$smalltext?></td>
  205. </tr>
  206. <tr>
  207. <td><span class="a"><?=$titleurl?> - <?=$newstime?></span></td>
  208. </tr>
  209. <tr>
  210. <td>&nbsp;</td>
  211. </tr>
  212. </tbody>
  213. </table>
  214. <?php
  215. }
  216. db_close();
  217. $empire=null;
  218. ?>
  219. <table width="100%" border="0" cellspacing="0" cellpadding="0" class="list_page">
  220. <tr>
  221. <td><?=$listpage?></td>
  222. </tr>
  223. </table></td>
  224. </tr>
  225. </table></td>
  226. </tr>
  227. </table>
  228. <!-- 页脚 -->
  229. <table width="100%" border="0" cellpadding="0" cellspacing="0">
  230. <tr>
  231. <td align="center" class="search">
  232. <form action="/e/search/index.php" method="post" name="searchform" id="searchform">
  233. <table border="0" cellspacing="6" cellpadding="0">
  234. <tr>
  235. <td><strong>站内搜索:</strong>
  236. <input name="keyboard" type="text" size="32" id="keyboard" class="inputText" />
  237. <input type="hidden" name="show" value="title" />
  238. <input type="hidden" name="tempid" value="1" />
  239. <select name="tbname">
  240. <option value="news">新闻</option>
  241. <option value="download">下载</option>
  242. <option value="photo">图库</option>
  243. <option value="flash">FLASH</option>
  244. <option value="movie">电影</option>
  245. <option value="shop">商品</option>
  246. <option value="article">文章</option>
  247. <option value="info">分类信息</option>
  248. </select>
  249. </td>
  250. <td><input type="image" class="inputSub" src="/skin/default/images/search.gif" />
  251. </td>
  252. <td><a href="/search/" target="_blank">高级搜索</a></td>
  253. </tr>
  254. </table>
  255. </form>
  256. </td>
  257. </tr>
  258. <tr>
  259. <td>
  260. <table width="100%" border="0" cellpadding="0" cellspacing="4" class="copyright">
  261. <tr>
  262. <td align="center"><a href="/">网站首页</a> | <a href="#">关于我们</a>
  263. | <a href="#">服务条款</a> | <a href="#">广告服务</a> | <a href="#">联系我们</a>
  264. | <a href="#">网站地图</a> | <a href="#">免责声明</a> | <a href="/e/wap/" target="_blank">WAP</a></td>
  265. </tr>
  266. <tr>
  267. <td align="center">Powered by <strong><a href="http://www.phome.net" target="_blank">EmpireCMS</a></strong>
  268. <strong><font color="#FF9900">7.5</font></strong>&nbsp; &copy; 2002-2018
  269. <a href="http://www.digod.com" target="_blank">EmpireSoft Inc.</a></td>
  270. </tr>
  271. </table>
  272. </td>
  273. </tr>
  274. </table>
  275. </body>
  276. </html>