I've looked around and could not find the answer I was looking for so I'm resorting to the boards...
I run a gaming site. Currently, I have an area for users to search for a game by the game title. However, if they misspell it or don't type part of it or all of it exactly the way it's in the database, nothign will be returned.
All I'm using is the like command in the query:
SELECT * FROM tablename WHERE gametitle LIKE '%$querystring%'
Is there another query I could run that will try to match spelling and such... example:
Let's say a user types in 'marrio' instead of 'mario'. Can I have it say something like 'no direct result was found, but here are similar matches' or something like that?
Thanks in advance for any help.