How do I do a fuzzy match of company names in MYSQL with PHP for auto-complete?
You can start with using SOUNDEX(), this will probably do for what you need (I picture an auto-suggestion box of already-existing alternatives for what the user is typing). The drawbacks of SOUNDEX() are: its inability to differentiate longer strings. Only the first few characters are taken into account, longer strings that diverge at the end … Read more