$query = "SELECT id, lang, rubrik, thema, content FROM ".$sqltblpre."faqdata WHERE MATCH (thema,content,keywords) AGAINST ('".$begriff."') AND active = 'yes'";
with this:
$query = "SELECT id, lang, rubrik, content FROM ".$sqltblpre."faqdata WHERE thema LIKE '%".$begriff."%' OR content LIKE '%".$begriff."%' OR keywords LIKE '%".$begriff."%' AND active = 'yes'";
Thanks to phpMyAdmin and three hours of trial and error.
