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

php 多功能搜索

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 10:47:42
Original
1194 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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template