我有一个 ajax 实时搜索脚本工作,只是它似乎只返回数组的第一行。不知道这是否与我的循环有关,但是,如果有人能发现错误,将非常感谢帮助,因为我似乎找不到它。我不包括 javascript,因为我很确定这不是错误,因为 php 文件正在触发。它只是呼应第一个打击而不是迭代其他打击。
//run query on dbase then use mysql_fetch_array to place in array form
while($a = mysql_fetch_array($res,MYSQL_BOTH))
{
//lookup all hints from array if length of q>0
if (strlen($q) > 0)
{
$hint="";
for($i=0; $i<count($a); $i++)
{
if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q))))
{
$n = $a['first']." ".$a['last'];
if ($hint=="")
{
$hint='<a href="mailto.php">'.$n.'</a>';
}
else
{
$hint=$hint.'<br><a href="mailto.php">'.$n.'</a>';// we do not seem to get here
}
}
}
}
// Set output to "no suggestion" if no hints were found
// or to the correct values
}//close while fetch
echo $hint;