There is a line with the text. And there is a table in the MySQL database, some words are written in this table.
I need a query that will find in this table all the words that are in the line with the text.
It turned out such a request:
$result = mysql_query("SELECT * FROM slova WHERE INSTR('" . mysql_escape_string($text_article) . "', name)"); But it turns out that the Word and the word are different words. It is case sensitive.
How to avoid this?
namefield? Show DDL tables - Anton Shchyrov