I have tried aspell and pspell in php but it is apprently not installed.
I downloaded a program from sourceforge (
http://spellerpages.sourceforge.net/) and it works great. It executes a command line to preform the task. Most of the code is a little over my head.
But this works OK.
All I want to do is check words in a textbox and respond with a line like Google uses Did you mean ...
with suggested spellings.
It would be great at this time to be able to do something like this
***Psuedo code ***
$word = "tesst"; /or get contents of text box
$cmd = "aspell suggest $word";
$suggestion= exec ($cmd);
if ($suggestion is not blank){
echo "Did you mean $suggestion";
}
roy