0
我試圖同時在輸入打字做一個自動完成採摘的數據,這是我試過到目前爲止:jQuery的自動完成不從PHP
jQuery的
這個被放置$(document).ready(function(){
$(".auto").autocomplete({
source: "../inc/search.php",
minLength: 1
});
下
PHP頁面:
<?php
include('connect.php');
$return_arr = array();
$stmt = $dbh->prepare('SELECT Username FROM USERS WHERE Username LIKE :term');
$stmt->execute(array('term' => '%' .$_GET['term']. '%'));
while($row = $stmt->fetch()) {
$return_arr[] = $row['Username'];
}
echo json_encode($return_arr);
?>
但它不工作,我鍵入 「安德烈」 爲電子商務xample,它會顯示「沒有搜索結果」。
解決
代替../connect.php我用connect.php
我包括爲incorect 是../connect.php代替connect.php,我還是謝謝你! –