Can you give me some tips how can i generate a suggestion based on the word entered by the user? Its not a misspelling thing, i wan’t when a user enter the word: “hello” if the database does not contain the word “hello” but the word “helo” or “helol” suggest that.
Thank you.
FYI
You should look into PHP’s levenshtein function, this finds closest matching words based on a score, using a dictionary file… I know you said it’s not mispelling, but the dictionary file can be anything and you can have more than one, depending on how you want to use it