私はphp検索ボックスを構築しています。これが私のクエリです
SELECT * FROM table1, table2 WHERE table1.title AND table2.posts LIKE '$query%' LIMIT 10
クエリの後、コードは
if($query) {
while ($result = $query ->fetch_object()) {
echo '<li onClick="window.open(\''.$result->guid.'\');">'.$result->post_title.'</li><br>';
}
} else {
echo 'ERROR: There was a problem with the query.';
}
そして、それは何も取得しません。クエリの何かだと思います。助けてください..