$sql = sprintf( "SELECT topic_title
FROM `phpbb_topics`
WHERE `topic_title` LIKE '%%%s%%' LIMIT 20"
, mysql_real_escape_string('match this title')
);
我在phpMyAdmin中运行此查询的结果是:(正确)
match this title
match this title 002
但是当我在PHP中运行相同的MYSQL查询时,我得到:(不正确)
match this title 002
我也尝试了MATCH AGAINST与php和phpMyAdmin的结果相同:
$sql = "SELECT topic_title
FROM phpbb_topics
WHERE MATCH (topic_title)
AGAINST('match this title' IN BOOLEAN MODE)";
我用以搜索的整个代码块:
mysql_connect("localhost", "user", "pass") or die(mysql_error());
mysql_select_db("phpbb") or die(mysql_error());
$query = "match this title";
$query = "SELECT topic_title
FROM phpbb_topics
WHERE MATCH (topic_title)
AGAINST('$query' IN BOOLEAN MODE)";
// Doesn't work (these 2 both give the same result "match this title 002" and no the "match this title")
// $query = "SELECT * FROM `phpbb_topics`
// WHERE `topic_title`
// LIKE '%$query%'
// LIMIT 0, 30 "; // Doesn't work
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_array($result) or die(mysql_error());
while($row = mysql_fetch_array($result)){
$topic_title = $row['topic_title'];
echo "$topic_title";
}
知道我做错了什么?
我一直在寻找所有地方并且发现旁边没有任何帮助:(
答案 0 :(得分:1)
问题在于,在执行查询后,您获取第一行,不执行任何操作,通过获取第二行并开始打印结果来进入循环。
如果您删除第一个$row = mysql_fetch_array($result)
,(直接在$result = mysql_query($query) or die(mysql_error());
之后),您应该没问题。
另一个评论;如果你回显变量,你不必在它周围放置任何qoutes。就像你现在这样做的方式,你不会在结果之间得到换行符,所以你可能想把这一行换成echo $topic_title . "<br>";