如何在搜索引擎中使用关键字

时间:2012-09-18 12:30:36

标签: php html loops mysqli search-engine

你好,我坐在这里思考以下问题:

我有一个自动提供搜索引擎,它通过如下表格运行:

zipcode    city       sum

12345      town       5

我确实通过使用javascript来实现搜索,该javascript在每个将要输入的字母上循环运行。到那时为止,我只能查找一个可以是城市名称或邮政编码的关键字。

现在我想将这两者结合起来,这样我就不会再将用户限制为其中一个,即使输入城市和邮政编码,也会找到它。

因此我想通过使用:

分隔每个关键字
preg_split('/[\s]+/', $keywords);

目前这是问题所在。使用这种方法,每个关键字都将插入一个数组中。它是如何工作的:

在html中我有一个输入字段。下面我有一个无序列表div。在该div javascript自动添加我的search.php文件的结果。看起来像是:

include('../scripts/db_connect.php');

if (isset($_POST['search_term']) == true && empty($_POST['search_term']) == false) {

$search_term = $db->real_escape_string(htmlentities(trim($_POST['search_term'])));

$search_term_query = "SELECT * FROM `a` WHERE `b` LIKE '$search_term%'";

if ($result_query = $db->query($search_term_query)) {

    while ($row = $result_query->fetch_assoc()) {

    echo '<li>', 
          $row["a"], 
          ' ', 
          $row["b"],  
          ' ',
          '( ',
          $row["c"],
          ' )', 
          ' </li>';
    }

}

}

我的javascript只处理一个关键字:

$(document).ready(function() {
    $('.searchfield').keyup(function() {
        var search_term = $(this).attr('value');
        $.post('ajax/search.php', {search_term:search_term}, function(data) {
            $('.result').html(data);

            $('.result li').click(function() {
                var result_value = $(this).text();
                $('.searchfield').attr('value', result_value);
                $('.result').html('');
            });
        });
    });
});

所以目前我不知道如何解决这个问题。如果有人可以帮助我,我真的很感激。感谢。

1 个答案:

答案 0 :(得分:0)

保持原样,并通过邮件调用将整个字符串发送到您的php文件。 在你的search.php中你可以尝试这样的事情:

function split_search_term($val) {
    $val = explode(" ", $val);
    $search_term_query = "SELECT * FROM `a` WHERE ";
    foreach($val as $val_row) {
        $search_term_query .= "(`zipcode` LIKE '" . $search_term . "%' OR `city`  LIKE '" . $search_term . "%') OR ";
    }
    if(count($val) > 0) {
        // The IF statement is used to make sure that the foreach loop has been fired at least once,
        // or else it would just chop off the 'WHERE ' part and you'll get something like:
        // "SELECT * FROM `a` WH" and this will give you an error
        $search_term_query = substr($search_term_query, 0, -4); // To cut off the last remaining ' OR ' in the query
    } else {
        $search_term_query .= "0"; // To finish the query so it doesn't return anything we don't want
    }

    return $search_term_query;
}

从这里你可以继续获取结果。我希望它有效。