2012-03-28 29 views
0

我有形式是這樣的:用於搜索PHP MySQL的創建查詢來搜索多個表

<form method="POST" action="<?php echo base_url() ?>admin/admin_search"> 
    <fieldset> 
     <label for="nalozi">Nalozi</label><input type="checkbox" name="nalozi" /> 
     <label for="malio_glasi">Mali oglasi</label><input type="checkbox" name="mali_oglasi" /> 
     <label for="zute_strane">Zute strane</label><input type="checkbox" name="zute_strane" /> 
     <label for="berza_rada">Berza rada</label><input type="checkbox" name="berza_rada" /> 
     <label for="vesti">Vesti</label><input type="checkbox" name="vesti" /> 
     <label for="event">Dogadjaji</label><input type="checkbox" name="event" /> 
    </fieldset>  

    <input type="search" name="keyword" id="keyword" /> 
    <input type="submit" value="Trazi"/> 
</form> 

和PHP代碼:

此搜索背後
function admin_search(){ 

     $keyword = trim($_POST['keyword']); 
     $search_explode = explode(" ", $keyword); 
     $x = 0; 

     $mgs = isset($_POST['mali_oglasi']) ? 1 : ""; 
     $jbs = isset($_POST['berza_rada']) ? 2 : ""; 
     $nws = isset($_POST['vesti']) ? 3 : ""; 
     $ypg = isset($_POST['zute_strane']) ? 4 : "";   

     if($mgs != "" || $jbs != "" || $nws != "" || $ypg != ""){$or = " OR ";}else{$or = "";} 
     if($jbs != "" || $nws != "" || $ypg != ""){$or1 = " OR ";}else{$or1 = "";} 
     if($nws != "" || $ypg != ""){$or2 = " OR ";}else{$or2 = "";} 
     if($ypg != ""){$or3 = " OR ";}else{$or3 = "";} 

     $nlz = isset($_POST['nalozi']) ? "person" : ""; 
     $dgj = isset($_POST['event']) ? "event" : ""; 

     if($nlz != "" || $dgj != ""){$z = ", "; $or_like = " OR "; }else{$z = " "; $or_like = "";} 
     if($dgj != ""){$z1 = ", ";$or_like1 = " OR ";}else{$z1 = " ";$or_like1 = "";} 

     if($mgs != "" || $ypg != "" || $jbs != "" || $nws != ""){$gi = "global_info";}else{$gi = "";} 

     $sql = "SELECT * FROM "; 

     if($gi != ""){$sql .= " $gi $z";} 
     if($nlz != ""){$sql .= " $nlz $z1";} 
     if($dgj != ""){$sql .= " $dgj";} 

     $sql .= " WHERE "; 
     if($mgs != ""){$sql .= " global_info.info_type_id = {$mgs} $or1 ";}   
     if($jbs != ""){$sql .= " global_info.info_type_id = {$jbs} $or2 ";}   
     if($nws != ""){$sql .= " global_info.info_type_id = {$nws} $or3 ";}   
     if($ypg != ""){$sql .= " global_info.info_type_id = {$ypg} ";} 
     $sql .= " AND "; 
     foreach($search_explode as $each){ 
      $x++; 
      if($x == 1){ 
       if($gi != ""){$sql .= " global_info.name LIKE '%$each%' $or_like ";} 
       if($nlz != ""){$sql .= " $nlz.name LIKE '%$each%'$or_like1 ";} 
       if($dgj != ""){$sql .= " $dgj.name LIKE '%$each%' ";} 

      } else { 

       $sql .= " AND global_info.name LIKE '%$each%' "; 
      } 
     } 
     echo $sql;   
     $q = $this->db->query($sql); 
     echo $q->num_rows(); 
     return $q = $q->num_rows() == 0 ? FALSE : $q->result_array(); 
    } 

念頭 - 我必須能夠選擇女巫表我想搜索和關鍵字搜索需要選擇任何表格。

當其中一個複選框被選中時,它工作正常,但如果兩個或多個被選中,並且如果有多個關鍵字(目前我只是嘗試使用兩個或多個關鍵字的global_info表)功能正在工作模糊。有時它不起作用,或者它正在工作,它會多次提供相同的結果,或者除了關鍵字以外的所有內容。目前我不太明白爲什麼它會給出結果。如何使這項工作?

+0

你可以給我正確的預期結果。 – Sara 2012-03-28 12:11:58

回答

2

試着改變它這樣寫的:

$tables = array(); 
if(isset($_POST['mali_oglasi'])){ 
    $tables['mgs'] = 1; 
} 
/* 
repeat for the other tables 
*/ 

/* Where you're building your WHERE clause, use this instead of the 'OR' logic */ 
if(!empty($tables)){ 
    $sql .= 'global_info.info_type_id IN (' . implode(',',$tables) . ')'; 
}