我目前有一個有點工作的搜索欄,它的工作方式我想要它,我只是想知道是否有可能添加鏈接到不同的項目搜索?現在任何搜索重定向到'Session.php'我能夠例如,如果有人搜索'家'我能夠顯示結果,然後用戶可以點擊'Home.php'?謝謝!如何將搜索欄中的鏈接轉到其他頁面?
的search.php代碼:
<?php
//--- Authenticate code begins here ---
session_start();
//checks if the login session is true
if(!isset($_SESSION['sess_user'])){
header("location:index.php");
}
$username = $_SESSION['sess_user'];
// --- Authenticate code ends here ---
?>
<link rel="stylesheet" type="text/css" href="../css/style1.css">
<?php
mysql_connect("localhost", "root", "") or die("Error connecting to database: ".mysql_error());
mysql_select_db("aha") or die(mysql_error());
?>
<html>
</html>
註銷
<head>
<title>Search results</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<?php
$query = $_GET['query'];
$min_length = 3;
if(strlen($query) >= $min_length){ // if query length is more or equal minimum length then
$query = htmlspecialchars($query);
// changes characters used in html to their equivalents, for example: < to >
$query = mysql_real_escape_string($query);
// makes sure nobody uses SQL injection
$raw_results = mysql_query("SELECT * FROM articles
WHERE (`title` LIKE '%".$query."%') OR (`text` LIKE '%".$query."%')") or die(mysql_error());
// * means that it selects all fields, you can also write: `id`, `title`, `text`
// articles is the name of our table
// '%$query%' is what I'm looking for, % means anything, for example if $query is Hello
// it will match "hello", "Hello man", "gogohello", if you want exact match use `title`='$query'
// or if you want to match just full word so "gogohello" is out use '% $query %' ...OR ... '$query %' ... OR ... '% $query'
if(mysql_num_rows($raw_results) > 0){ // if one or more rows are returned do following
while($results = mysql_fetch_array($raw_results)){
// $results = mysql_fetch_array($raw_results) puts data from database into array, while it's valid it does the loop
echo "<a href='../pages/session.php'><h3>{$results['title']}</h3></a><p>{$results['text']}</p>";
}
}
else{ // if there is no matching rows do following
echo ("<br><br>No results</br></br>");
}
}
else{ // if query length is less than minimum
echo ("</br></br>Minimum length is</br></br> ".$min_length);
}
?>
</body>
<br>
<br>
<a class="btn btn-search" type="button" href="index.php" >Search Again</a>
</br>
</br>
DB FOR ARTICLE:
http://puu.sh/ctUUq/2f73509cf2.png
謝謝!
你的意思是顯示最近的搜索? – khandelwaldeval 2014-10-28 10:17:13
@devaldcool喜歡,讓我們說一個用戶搜索'家'我希望它顯示'家'並重定向到'Home.php'。所以等等 – Sarah 2014-10-28 10:19:09
在下拉菜單中(如谷歌)? – khandelwaldeval 2014-10-28 10:19:55