PHP MYSQLI搜索查询不起作用

时间:2017-03-22 09:34:03

标签: php mysql mysqli

我想使用数字包机搜索查询。 但只有我获得的包机结果,但我没有收到数字包机搜索结果

此类别:

2D Animator
3D Animator
VFX Artist
3DCharacter Animator 
RJ
Other Animation
Vocal Artist

我没有得到结果。

$category = $_REQUEST["category"];

$yyu125_new=mysqli_query($connection, "SELECT * FROM `personal_details` WHERE interest LIKE '%" . $category . "%'");
while($hhf175_new=mysqli_fetch_assoc($yyu125_new)){
    $user_id_new = $hhf175_new["user_id"];
}

兴趣数据类型文本。

我可以获得所有类别搜索结果。

1 个答案:

答案 0 :(得分:0)

您可以在此处覆盖您的结果:$user_id_new = $hhf175_new["user_id"];

所以要么像

那样做
$user_id_new[] = $hhf175_new["user_id"];

$user_id_new .= $hhf175_new["user_id"];

由于你没有描述你真正想要的东西,所以很难真正帮助你。

另外:你对注射很开放,所以不要只把$category放在那里。那太糟糕了。