如何弄精确搜索

如何弄精确搜索

这是模糊搜索:

<?
include "conn.php";
if($_POST['searchid']==1){
$query=" and  title like  '%".$_POST['search']."%' " ;
}
else
{
$query=" and detail like  '%".$_POST['search']."%' " ;
}
$sql=" select  *  from  news1  where  1 $query"  ;
$result=mysql_query($sql) ;
while($row=mysql_fetch_array($result))
{
echo $row['title']. "<br>";
echo $row['detail']. "<p>";
}  
?>
如何弄精确搜索

把 % 去掉不就行了
毕业了。。。