在本教程中,您將學習如何使用PHP和Ajax創(chuàng)建實時MySQL數據庫搜索功能。
您可以使用Ajax和PHP創(chuàng)建簡單的實時數據庫搜索功能,當您在搜索輸入框中開始鍵入某些字符時,將顯示搜索結果。
在本教程中,我們將創(chuàng)建一個實時搜索框,該搜索框將搜索countries表并異步顯示結果。但是,首先我們需要創(chuàng)建該表。
執(zhí)行以下SQL查詢以在MySQL數據庫中創(chuàng)建countries表。
CREATE TABLE countries ( id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, name VARCHAR(50) NOT NULL );
創(chuàng)建表后,您需要使用SQL INSERT語句填充一些數據。
如果不熟悉創(chuàng)建表的步驟,請查看有關SQL CREATE TABLE語句的教程,以獲取有關在MySQL數據庫系統中創(chuàng)建表的語法的詳細信息。
現在,讓我們創(chuàng)建一個簡單的Web界面,該界面允許用戶實時搜索“countries”表中可用的國家/地區(qū)名稱,就像自動填充或預先輸入一樣。
創(chuàng)建一個名為“ search-form.php”的PHP文件,并將以下代碼放入其中。
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PHP MySQL 數據庫實時搜索</title> <style type="text/css"> body{ font-family: Arail, sans-serif; } /*設置搜索框的樣式 */ .search-box{ width: 300px; position: relative; display: inline-block; font-size: 14px; } .search-box input[type="text"]{ height: 32px; padding: 5px 10px; border: 1px solid #CCCCCC; font-size: 14px; } .result{ position: absolute; z-index: 999; top: 100%; left: 0; } .search-box input[type="text"], .result{ width: 100%; box-sizing: border-box; } /* Formatting result items */ .result p{ margin: 0; padding: 7px 10px; border: 1px solid #CCCCCC; border-top: none; cursor: pointer; } .result p:hover{ background: #f2f2f2; } </style> <script src="https://code.jquery.com/jquery-1.12.4.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('.search-box input[type="text"]').on("keyup input", function(){ /*更改時獲取輸入值 */ var inputVal = $(this).val(); var resultDropdown = $(this).siblings(".result"); if(inputVal.length){ $.get("backend-search.php", {term: inputVal}).done(function(data){ //在瀏覽器中顯示返回的數據 resultDropdown.html(data); }); } else{ resultDropdown.empty(); } }); //單擊結果項時設置搜索輸入值 $(document).on("click", ".result p", function(){ $(this).parents(".search-box").find('input[type="text"]').val($(this).text()); $(this).parent(".result").empty(); }); }); </script> </head> <div class="search-box"> <input type="text" autocomplete="off" placeholder="Search country..." /> <div class="result"></div> </div> </html>
每次更改搜索輸入的內容或在搜索輸入上發(fā)生鍵入事件時,jQuery代碼將Ajax請求發(fā)送至“ backend-search.php”文件,該文件從與國家/地區(qū)相關的countries表中檢索記錄搜索的字詞。這些記錄稍后將由jQuery插入到<div>并顯示在瀏覽器中。
這是我們的“ backend-search.php”文件的源代碼,該文件根據Ajax請求發(fā)送的查詢字符串搜索數據庫并將結果發(fā)送回瀏覽器。
<?php /* 嘗試MySQL服務器連接。 假設您正在運行MySQL 具有默認設置的服務器(用戶“ root”,無密碼) */ $link = mysqli_connect("localhost", "root", "", "demo"); //檢查連接 if($link === false){ die("錯誤:無法連接。 " . mysqli_connect_error()); } if(isset($_REQUEST["term"])){ //預處理select語句 $sql = "SELECT * FROM countries WHERE name LIKE ?"; if($stmt = mysqli_prepare($link, $sql)){ //將變量作為參數綁定到預處理語句 mysqli_stmt_bind_param($stmt, "s", $param_term); //設置參數 $param_term = $_REQUEST["term"] . '%'; // Attempt to執(zhí)行預處理語句 if(mysqli_stmt_execute($stmt)){ $result = mysqli_stmt_get_result($stmt); //檢查結果集中的行數 if(mysqli_num_rows($result) > 0){ //獲取結果行作為關聯數組 while($row = mysqli_fetch_array($result, MYSQLI_ASSOC)){ echo "<p>" . $row["name"] . "</p>"; } } else{ echo "<p>沒有找到匹配的記錄</p>"; } } else{ echo "錯誤:無法執(zhí)行 $sql. " . mysqli_error($link); } } //結束語句 mysqli_stmt_close($stmt); } //關閉連接 mysqli_close($link); ?>
<?php /* 嘗試MySQL服務器連接。 假設您正在運行MySQL 具有默認設置的服務器(用戶“ root”,無密碼) */ $mysqli = new mysqli("localhost", "root", "", "demo"); //檢查連接 if($mysqli === false){ die("錯誤:無法連接。 " . $mysqli->connect_error); } if(isset($_REQUEST["term"])){ //select預處理語句 $sql = "SELECT * FROM countries WHERE name LIKE ?"; if($stmt = $mysqli->prepare($sql)){ //將變量作為參數綁定到預處理語句 $stmt->bind_param("s", $param_term); //設置參數 $param_term = $_REQUEST["term"] . '%'; // 嘗試執(zhí)行預處理語句 if($stmt->execute()){ $result = $stmt->get_result(); //檢查結果集中的行數 if($result->num_rows > 0){ //獲取結果行作為關聯數組 while($row = $result->fetch_array(MYSQLI_ASSOC)){ echo "<p>" . $row["name"] . "</p>"; } } else{ echo "<p>沒有找到匹配的記錄</p>"; } } else{ echo "錯誤:無法執(zhí)行 $sql. " . mysqli_error($link); } } //結束語句 $stmt->close(); } //關閉連接 $mysqli->close(); ?>
<?php /* 嘗試MySQL服務器連接。 假設您正在運行MySQL 具有默認設置的服務器(用戶“ root”,無密碼) */ try{ $pdo = new PDO("mysql:host=localhost;dbname=demo", "root", ""); //將PDO錯誤模式設置為異常 $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); } catch(PDOException $e){ die("錯誤:無法連接。 " . $e->getMessage()); } //嘗試執(zhí)行搜索查詢 try{ if(isset($_REQUEST["term"])){ //創(chuàng)建預處理語句 $sql = "SELECT * FROM countries WHERE name LIKE :term"; $stmt = $pdo->prepare($sql); $term = $_REQUEST["term"] . '%'; //綁定參數到語句 $stmt->bindParam(":term", $term); //執(zhí)行預處理語句 $stmt->execute(); if($stmt->rowCount() > 0){ while($row = $stmt->fetch()){ echo "<p>" . $row["name"] . "</p>"; } } else{ echo "<p>沒有找到匹配的記錄</p>"; } } } catch(PDOException $e){ die("錯誤:無法執(zhí)行 $sql. " . $e->getMessage()); } //結束語句 unset($stmt); //關閉連接 unset($pdo); ?>
SQL SELECT語句與LIKE運算符結合使用,以在countries數據庫表中查找匹配的記錄。我們實現了預處理語句,以提高搜索性能并防止SQL注入攻擊。
注意:在SQL語句中使用用戶輸入之前,請始終對其進行過濾和驗證。您還可以使用PHP mysqli_real_escape_string()函數來轉義用戶輸入中的特殊字符,并創(chuàng)建合法的SQL字符串以防止SQL注入。