Home > php教程 > php手册 > body text

php 多功能搜索

WBOY
Release: 2016-06-13 10:47:42
Original
1144 people have browsed it

$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的专栏

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!