How to make a search mechanism like that:
when user type: "sól"
two words are searched: "sol" & "sól"
and there are search results for both words
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use a mySQL collation that is “Umlaut insensitive”, for example
utf8_general_ci.Either
utf8_general_ciOr define the collation while searching, which is easier but less good for performance.
This should work:
However, doing this may degrade performance in some situations, because I’m quite sure the fulltext index can’t be used when specifying the collation like this.