我想创建一个搜索框,而不是在查询中使用WHERE cluse来匹配字段中的确切短语,我希望搜索框能够执行语义搜索,以便在用户输入时一个短语,它显示适当的结果,它能够匹配短语的含义。当您尝试通过Google搜索时谷歌的确如何运作。这有可能实现,有没有人有任何想法?
以下是我目前使用的代码,可以使用数据库查看某行是否与搜索框中输入的完整短语匹配:
<?php
//connected to DB
foreach (array('questioncontent') as $varname) {
$questioncontent = (isset($_POST[$varname])) ? $_POST[$varname] : '';
}
?>
<p>Search for a previous question by entering in a phrase in the search box below and submitting the phrase</p>
<form action="previousquestions.php" method="post" id="modalform">
<p>Search: <input type="text" name="questioncontent" value="<?php echo $questioncontent; ?>" /></p>
<p><input id="searchquestion" name="searchQuestion" type="submit" value="Search" /></p>
</form>
<?php
if (isset($_POST['searchQuestion'])) {
$questionquery = "SELECT QuestionContent FROM Question
WHERE(QuestionContent = '".mysql_real_escape_string($questioncontent)."')";
$questionnum = mysql_num_rows($questionresult = mysql_query($questionquery));
if($questionnum !=0){
$output = "";
while ($questionrow = mysql_fetch_array($questionresult)) {
$output .= "
<table>
<tr>
<td>{$questionrow['QuestionContent']}</td>
</tr>";
}
$output .= " </table>";
echo $output;
}
}
答案 0 :(得分:1)
您正在寻找“自动完成”功能。试试php + mysql的这些教程:
jquery-php-mysql-ajax-autocomplete
Stackoverflow jquery autocomplete
答案 1 :(得分:1)
如果您正在寻找PHP搜索引擎教程,请查看此YouTube video - 它可能有所帮助。