我有从 mysql 查询运行的搜索脚本。如果他们的 display_name 或 location 与查询类似,它将从数据库中提取匹配的用户。当我搜索用户显示名称时,每个用户只得到一个结果,如下所示:
搜索 'Tom' = 2 个结果为 tom = 1.tom davies 和 2.tom smith。
无论出于何种原因,如果我搜索位置,即曼彻斯特,它会复制每个用户的结果,例如:
汤姆·戴维斯 汤姆·戴维斯 汤姆·戴维斯 汤姆·戴维斯 汤姆·史密斯 汤姆·史密斯 汤姆·史密斯 汤姆·史密斯
有人可以解释我如何阻止它这样做。我只希望它为每个匹配搜索查询的用户显示一个结果,而不是多次显示同一个用户。我确定这与从 ptb_users 和 ptb_profiles 中全选有关,但我需要包含 ptb_users 中的“帐户类型”和“帐户状态”。
谢谢
<?php
//PHP CODE STARTS HERE
if(isset($_GET['submit'])){
// Change the fields below as per the requirements
$db_host="localhost";
$db_username="root";
$db_password="";
$db_name="database";
$db_tb_atr_name="display_name";
//Now we are going to write a script that will do search task
// leave the below fields as it is except while loop, which will display results on screen
mysql_connect("$db_host","$db_username","$db_password");
mysql_select_db("$db_name");
$query=mysql_real_escape_string($_GET['query']);
$query_for_result=mysql_query("SELECT *
FROM ptb_users, ptb_profiles
WHERE ptb_users.account_type = \"User\" AND ptb_users.account_status = \"Active\" AND ptb_profiles.user_id = ptb_users.id AND display_name like '%".$query."%'
OR location LIKE '%".$query."%' OR age LIKE '%".$query."%'");
echo "<div class=\"results\">";
while($data_fetch=mysql_fetch_array($query_for_result))
{
echo "<div class=\"spacing\"><a href=\"profile.php?id={$data_fetch['user_id']}\">";
echo substr($data_fetch[$db_tb_atr_name], 0,160);
echo "</a></div>";
}
mysql_close();
}
?>