Просмотр файла waplend/forum/seach.php

Размер файла: 1.93Kb
<?php 
include ("../head.php");
include ("../tools.php");
	$key = hacker($_POST["key"]);
	$base = hacker($_POST["base"]);
    $key=htmlspecialchars(stripslashes(trim($key)));

if (empty($key))
{
	 echo "<div class='contur_rek'>
<div class='header_rek'><div style='text-align:center'><b>Поиск</b></div></div></div>";
echo "<div> Ключевое слово:
<form action='seach.php' method='post'>
	<input title='key' name='key' maxlength='50'/><br/>
		<select name='base'>
	<option value='1'>В названиях тем</option>
	<option value='2'>В сообщениях</option>
	</select><br/>
<input type='submit' value='Искать'/>
		</form></div>";
}

if (!empty($key))
{ echo "<div class='contur_rek'>
<div class='header_rek'><div style='text-align:center'><b>Результаты поиска</b></div></div></div>";
if ($base=="1"){$base="tema";}
if ($base=="2"){$base="mess";}
$rez=array();
$q = mysql_query("select * from `forum` where type='".$base."';");
while($arr = mysql_fetch_array($q))
 {
		
   	   $pos = strpos($arr['text'], $key);
 if ($pos === false) {}
  else {
  $q1 = mysql_query("select * from `forum` where type='tema' and idtema='".$arr['idtema']."' and idforum='".$arr['idforum']."';");
  	  $arr1 = mysql_fetch_array($q1);
  	  


  $rez[]="<div class='contur'><div class='header'>&#8594; <a href='tema.php?forum=".$arr['idforum']."&amp;tema=".$arr['idtema']."'>".$arr1['text']."</a></div><div>".$arr['text']."</div></div>";
       }
}
   	   $rezcount=count($rez);
echo "<div>По Вашему запросу найдено:".$rezcount." результата(ов)</div>";
if ($rezcount>0)
{
	echo "<div>Есть совпадение в:</div>";
}
for ($r=0; $r<$rezcount; $r++)
	{echo "<div>".$rez[$r]."</div>";}
echo "<div>&#8594; <a href='seach.php'>Поиск</a><br/></div>";
}
	echo "<div>&#8594; <a href='./index.php'>Форумы</a></div>";
require ("../foot.php"); 
	?>