我在输入输入时尝试自动完成,这是我到目前为止所尝试的:
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);
?>
但它不起作用,我键入&#34; andrei&#34;例如,它说&#34;没有搜索结果。&#34;
而不是../connect.php我使用了connect.php
答案 0 :(得分:0)
我认为你的道路不行。
source: "../inc/search.php"
尝试
source: "/inc/search.php"