Home >php教程 >php手册 >php多功能搜索

php多功能搜索

WBOY
WBOYOriginal
2016-06-13 10:46:02978browse

 

$flag=$_POST['flag']; 

$sosoval=$_POST['keyword']; 

$sosoquery="where 1=1 "; 

if(!emptyempty($sosoval)&&$flag!=='-1'){ 

//$sosoquery.="and (title like '%$sosoval%') or (keyword like '%$sosoval%') or (author like '%$sosoval%')"; 

if($flag=='1'){ 

    $sosoquery.="and (author like '%$sosoval%')"; 

}elseif ($flag=='2'){ 

    $sosoquery.="and (title like '%$sosoval%')"; 

}else{ 

    $sosoquery.="and (keyword like '%$sosoval%')"; 

} $sql="select * from article $sosoquery order by id desc"; 

$rs=$db->query($sql); 

$date=array(); 

while ($row=$db->fetch_array($rs)){ 

    $date[]=$row; 

$tpl->assign('soso',$date); 

$tpl->assign('appname','信息示例'); 

$tpl->display('index/up.tpl'); 

chaojie2009的专栏

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn