Home  >  Article  >  php教程  >  php 多功能搜索

php 多功能搜索

WBOY
WBOYOriginal
2016-06-13 10:47:421144browse

$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
Previous article:php简单分页类Next article:php无限分类读取多级菜单