You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$sql->listSearch = $db->query("SELECT post.id as post_id, post.title, post.image, post.date_create, post.id_category, category.name as category_name, category.slug as category_slug, category.type as category_type FROM post INNER JOIN category ON category.id = post.id_category
WHERE MATCH(post.title, post.content)
AGAINST('{$q}' IN NATURAL LANGUAGE MODE WITH QUERY EXPANSION)