我的PHP实时搜索代码无任何问题。我在下拉搜索结果中添加了一个缩略图。每个搜索结果都会添加相同的图像(站点徽标)。 Nut现在我需要在下拉搜索结果中添加不同的图像。示例:facebook实时搜索不同的个人资料图片。
我想要的:当我在搜索框中输入“Bob”时,Bob的个人资料图片和详细信息。当我在搜索框中输入“标记”时,马克的个人资料图片和详细信息下拉实时搜索结果。
我只在这里发布我的search.php文件。我认为这对我的问题已经足够了。此代码将一个缩略图(image.jpg)添加到所有下拉列表实时搜索结果中。如何为每个结果添加不同的缩略图?
<?php
include('db.php');
if($_POST)
{
$q = mysql_real_escape_string($_POST['search']);
$strSQL_Result = mysql_query("select id,name,email from live_search where name like '%$q%' or email like '%$q%' order by id LIMIT 5");
while($row=mysql_fetch_array($strSQL_Result))
{
$username = $row['name'];
$email = $row['email'];
$b_username = '<strong>'.$q.'</strong>';
$b_email = '<strong>'.$q.'</strong>';
$final_username = str_ireplace($q, $b_username, $username);
$final_email = str_ireplace($q, $b_email, $email);
?>
<div class="show" align="left">
<img src="image.jpg" style="style here"><?php echo $final_username; ?></span> <br/><?php echo $final_email; ?><br/>
</div>
<?php
}
}
?>