我为我的网站构建了一个简单的搜索引擎,它的工作方式是当用户输入关键字时,它会查询数据库并显示结果。
我的数据库表如下所示:
game_id title developer publisher genre release_date platform
rating image_location description
我想让用户在进行搜索后过滤结果,最好不要刷新页面(只编码了一个月,但对 jquery 和 ajax 有一个大致的了解)。
这是我的代码,我使用包含,因此搜索栏、搜索结果和查询页面是分开的。
第 1 页搜索栏
<div id=\"top_search\">
<form name=\"input\" action=\"search.php\" method=\"get\" id=\"search_form\">
<input type=\"text\" id=\"keywords\" name=\"keywords\" size=\"128\" class=\"searchbox\" value=\"$defaultText\">
<select id=\category\" name=\"category\" class=\"searchbox\">
";
createCategoryList();
echo '
</select>
<input type="submit" value="Search" class="button" />
</form>
</div>
</header>
';
第 2 页显示结果
<?php
session_start();
include ("includes/search_func.php");
if (isset($_GET['keywords'])){
$keywords = mysql_real_escape_string(htmlentities(trim($_GET['keywords'])));
$errors = array();
if(empty($keywords)){
$errors[] = 'Please enter a search term';
}else if(strlen($keywords)<3){
$errors[] = 'Your search term must be at least 3 characters long';
}else if(search_results($keywords) == false){
$errors[] = 'Your search for'.$keywords.' returned no results';
}
if(empty($errors)){
function diplay_results($keywords){
$results = search_results($keywords);
$results_num = count($results);
foreach($results as $result ){
echo '
<div id="game_result">
<a href= game_page.php?game_id='.$result['game_id'].'><img src= '.$result['image_location'].' id="image" /></a>
<div id="main_title">
<a href= game_page.php?game_id='.$result['game_id'].'><h2 id="game_title">'.$result['title'].' </h2></a>
<h3 id="platform">for '.$result['platform'].'</h3>
</div>
<p id=game_description>'.$result['description'].'</p>
<div id="right_side">
<h4 id="rating">'.$result['rating'].'</h4>
</div>
<hr id="hr"/>
</div>
';
}
}
}else{
foreach($errors as $error){
echo $error, '<br />';
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/search.css">
</head>
<body>
<div id="wrapper">
<div id="main_aside">
//filter navigation will go here
</div>
<div id="main_section" class="header">
<?php diplay_results($keywords)?>
</div>
</div>
</body>
</html>
第三页查询数据库
<?php
include 'includes/connect.php';
function search_results($keywords){
$returned_results = array();
$where = "";
$keywords = preg_split('/[\s]+/', $keywords);
$total_keywords = count($keywords);
foreach($keywords as $key=>$keyword){
$where .= "title LIKE '%$keyword%'";
if($key != ($total_keywords - 1)){
$where .= " AND ";
}
}
$results ="SELECT * FROM games WHERE $where ";
echo $results;
$results_num = ($results = mysql_query($results)) ? mysql_num_rows($results) : 0;
if($results_num === 0){
return false;
}else{
while($row = mysql_fetch_assoc($results)){
$returned_results[] = array(
'game_id' => $row['game_id'],
'title' => $row['title'],
'platform' => $row['platform'],
'rating' => $row['rating'],
'image_location' => $row['image_location'],
'description' => $row['description'],
);
}
return $returned_results;
}
}
?>
因此,如果不清楚我想让用户搜索一个关键术语,那么它将从数据库中显示标题中带有关键字的任何游戏(我已经有这部分工作)。现在想不通的是如何让用户过滤他们的结果,让我们说只有动作游戏,以及让我们说某个平台等等。
就像我说的那样,我只做了一个月,所以如果我做错了什么,请不要犹豫,称我为白痴,但请帮忙。任何帮助将不胜感激,甚至链接到教程或书籍推荐。谢谢。