Question

In my web application there will be several users. and they have their own contents uploaded to my webapp. For each content they upload it has a title, description and tags(keywords). I can write a search script to search for content or user name. but they keywords when they have given with a spelling mistake it doesn't return any result. For example if there is a user named "Michael" in the database and the search query was "Micheal" i should get "Did you mean to search for 'Michael'" which is none other than a search suggestion.

Also this suggestion should be for the contents uploaded by the user. An user may keep their content's title as "Michael's activities May 2011" and suggestions should be generated for individual words.

Was it helpful?

Solution

You could use SOUNDEX to search for similar-sounding names, like that:

SELECT * FROM users WHERE SOUNDEX(name) = SOUNDEX(:input)

or like that

SELECT * FROM users WHERE name SOUNDS_LIKE :input

(which is completely equivalent)

Edit: if you need to use an algorithm other than Soundex, as Martin Hohenberg suggested, you would need to add an extra column to your table, called, for example, sound_equivalent. (This is actually a more efficient solution as this column can be indexed). The request would then be:

SELECT * FROM users WHERE sound_equivalent = :input_sound_equivalent

The content of the sound_equivalent column can then be generated with a PHP algorithm, and inserted in the table with the rest of user parameters.

OTHER TIPS

You can also use the php library pspell to get suggestions if you have no search results.

Maybe create a database of the most common words (like: dog, house, city, numbers, water, internet). Don't need to make it big (<10000 words). Then when you explode the search term, check the "word" database for words LIKE the search terms. Then just echo out the suggestions.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top