在php和mysql中进行更好的搜索查询

时间:2013-07-14 14:57:18

标签: php mysql search multiple-columns

我正在尝试创建搜索查询:

我提供了6种搜索选项。

  1. 卧室
  2. 类型
  3. 邮编
  4. 位置
  5. 最低价格
  6. 最高价格
  7. 我在表格中有这些字段。我搜索了很多但找不到我正在搜索的答案。我也尝试使用LIKE%进行查询。但这也没有成功。

    如果用户仅选择“类型”,则应显示该类型的所有数据。其他领域也是如此。

    同样,如果用户选择2或3个选项并进行搜索,则应显示与所选选项匹配的结果。

    如何创建这样的搜索?我应该这样做吗?:

    if(){
    
    }else if(){
    
    }
    

3 个答案:

答案 0 :(得分:1)

动态构建查询

$useAnd = false;
$ query = " select * from table";
if (isset($bedrooms) == true or isset($type) == true or isset($postcode)==true or ...)
{
    $query = $query. " where "; 
    if (isset($bedroomsIsset) = true) 
    {
     $query = $query . "bedrooms >=". $bedrooms; $useAnd=true;
    }
   if (isset($type) = true) 
   {
      if ($useAnd=true)
      {$query = $query . " and " ;}
      $query = $query . "type =". $type; $useAnd=true;
    }
    if (isset($postcode)==true)
    {
   if (isset($poscode) = true) 
   {
      if ($useAnd=true)
      {$query = $query . " and " ;}
      $query = $query . "postcode =". $postcode; $useAnd=true;

    }
    if (...)

}

答案 1 :(得分:1)

您可以动态构建SQL查询。如果搜索值不为空(或其他不计入搜索值的内容),则不要添加搜索。 不要忘记将mysql_real_escape_string添加到params或者坏人会利用你的软件。

例如,php:

<?php
$params = array('type' => 'aaa', 'max_price'=>100); // parameters that a user gave. Example from $_POST or $_GET

$querySearch = array();
if(isset($params['type'])) {
  $querySearch[] = "type LIKE '%".mysql_real_escape_string($params['type'])."%'";
}

if(isset($params['max_price'])) {
  $querySearch[] = "price <= ".mysql_real_escape_string($params['max_price']);
}       

if(isset($params['min_price'])) {
  $querySearch[] = "price >= ".mysql_real_escape_string($params['min_price']);
}

// and etc.

$q = 'select * FROM hotel WHERE ' . implode(' AND ' , $querySearch);
echo $q;
?>

然后您可以使用查询$ q来进行数据库选择。

答案 2 :(得分:0)

if(!empty($some_option)) $search_options["option_name"] = $some_option;
$query = "some query";
$where = "";
if(!empty($search_options)){
    $first_option = array_shift($search_types);
    $where = " " . key($first_option) . " = " . $first_option;
    foreach($search_options as $key => $option){
        $where .= " AND $key = $option";
    }
}
$query .= $where;