I 'm currently working on a language project with someone else, and I 'm using a database for words in a language, but we also have translations and the best way to do it is by including the words in one column. So right now we have (language) (English) (German) (Dutch). The problem is that some words can be translated by multiple words, so for English, you get a translation like:
good, healthy
My question is, I want to avoid having to make a new (English2) column for more different translations of one word in one language, and instead of that putting them all at one page, but how can I make sure that if people look for something, I can also let the code distinguish between the words before and after the comma? So that if you look for 'healthy', you can find the main word, and not only if you type 'good, healthy', what no one will do. I have some knowledge of PHP, but working with strings is quite difficult for me and I still don't get how to do this.