jQuery自动完成不从php中挑选数据

时间:2017-06-29 20:31:34

标签: php jquery autocomplete

我在输入输入时尝试自动完成,这是我到目前为止所尝试的:

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

1 个答案:

答案 0 :(得分:0)

我认为你的道路不行。

source: "../inc/search.php"

尝试

source:  "/inc/search.php"