0

我有一个 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;
4

2 回答 2

2

您在每次循环迭代时都会覆盖您的$hint变量。while尝试在while(删除您现在拥有的位置)之前声明它

$hint = "";
while($a = mysql_fetch_array($res,MYSQL_BOTH))
{
于 2012-06-07T14:02:45.097 回答
1

尝试使用此方法:

<?
$output = '';
while($a = mysql_fetch_array($res,MYSQL_BOTH)) {
    if (strlen($q) > 0) {
        for($i=0; $i<count($a); $i++) {
            if (strtolower($q)==strtolower(substr($a[$i],0,strlen($q)))) {
                $n = $a['first']." ".$a['last'];
                if ($output == "") {
                    $output = '<a href="mailto.php">'.$n.'</a>';
                } else {
                    $output .= '<br><a href="mailto.php">'.$n.'</a>';
                }
            }
        }
    }
}
echo $output;
?>
于 2012-06-07T14:05:56.743 回答