CliffLandin
Programmer
I am encountering a strange issue. I am querying a mysql database for keyword results using:
and it works fine...
but only for certain words. For example, I have 2 properties, Viking Lodge #213 and Franz Klammer Lodge. If I search for Viking all of the Viking properties including #213 come up. If I do a search for Lodge both of the above units plus all the ones with Lodge in the title are returned.
However, if I search for Franz or Klammer I get no results back.
Certain words will return results, but other words that should, won't.
I'm at a loss. Any help would be appreciated.
Thanks,
When in doubt, go flat out!
Code:
SELECT * FROM table WHERE title LIKE '%keyword%'
and it works fine...
but only for certain words. For example, I have 2 properties, Viking Lodge #213 and Franz Klammer Lodge. If I search for Viking all of the Viking properties including #213 come up. If I do a search for Lodge both of the above units plus all the ones with Lodge in the title are returned.
However, if I search for Franz or Klammer I get no results back.
Certain words will return results, but other words that should, won't.
I'm at a loss. Any help would be appreciated.
Thanks,
When in doubt, go flat out!