This is my query:
$sql = "SELECT *
MATCH(textEN,textDE,textPT,titlePT,titleDE,titleEN) AGAINST('$search') AS score
FROM $main_db.ff_pages
WHERE MATCH(textEN,textDE,textPT,titlePT,titleDE,titleEN) AGAINST('$search')
ORDER BY score DESC";
Everything works fine. As you can see I have a multi-langage website, and that's why I need to know in which of the columns the searched expression has been found. For example, i would like to know that the expression "Solar system" has been found in the column "textEN", in order to display the english version of the site in the search results.
Is there any way to do this?