why is this code not working? in php i have the following...
$keywords = "+hello +world";
$query= "SELECT * FROM forums WHERE MATCH (topics) AGAINST ('$keywords' IN BOOLEAN MODE)";
$results = mysqli_query($database, $query);
$row = mysqli_fetch_assoc($results);
$topics = $row['topics'];
echo $topics;
Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given...