82505

Question:
I am using php and Pspell to create a custom "did you mean" feature and i need to generate suggestions strictly from the word list with me. Is there a way to turn off suggestions from default English dictionary i am using as a base. I just need pspell to look in the custom dictionary, that's it.
Answer1:Based on this <a href="http://www.rdeeson.com/weblog/41/using-php-pspell-spell-check-functions-with-a-custom-dictionary.html" rel="nofollow">page</a>:
$dictionary_link = pspell_new_personal("/var/dictionaries/custom_spellings","/var/dictionaries/custom_spellings");