1

我在查询中做错了什么?预先感谢您的帮助

新 - 不工作

$query  = "SELECT * "; 
$query .= "FROM photographs "; 
$query .= "WHERE `caption` LIKE '%".$query."%' ";
    $query .= "OR `caption2` LIKE '%".$query."%' ";
//$query .= "WHERE visible = 1 ";
$query .= "ORDER BY $order_by LIMIT $start, $display ";     
$result = mysqli_query ($connection, $query);

旧查询 - 工作

//$query = ("SELECT * FROM photographs WHERE (`caption` LIKE '%".$query."%') OR (`caption2` LIKE '%".$query."%')");
//$result = mysqli_query($connection, $query);
4

2 回答 2

3

您正在$query用部分查询覆盖变量。:-)

于 2013-10-21T11:32:07.633 回答
1
LIKE '%".$query."%' ";

应该替换为

LIKE '%".$yourTerm."%' ";

其中 $yourTerm 是您尝试在数据库中搜索的内容

于 2013-10-21T11:33:12.773 回答