php+ajax+mysql实现即时搜索

php代码

 0) {
        $hint = "";
         for ($i = 0; $i < count($arr); $i++){
            if (strtolower($q) == strtolower(substr($arr[$i], 0, strlen($q)))) {
                if ($hint == "") {
                    $hint = $arr[$i];
                } else {
                    $hint = $hint . " , " . $arr[$i];
                }
            }
        }
}

if ($hint == "")
{
    $response="no suggestion";
}
else
{
    $response=$hint;
}

//输出响应
echo $response;

if (mysqli_connect_errno()){
    exit("失败");
}
mysqli_close($link);
?>

HTML代码:




    
    
    
    Document
    
    



search

有借鉴自w3school中的ajax教程

你可能感兴趣的:(AJAX)