I have a PHP keyword search interface that works with a database (MySQL) that has a Keywords field.
The way the keyword field is set up is as follows: this is a varchar with all the words formatted as shown below ...
there, theyre, them, warm, etc.
if I want to simply return the exact word "the" from the search, how will this be achieved?
I tried using 'the%' and '%the' in PHP and it does not work without returning all of the lines where the keyword is displayed.
Is there a better (more accurate) way to do this?
thanks
source share