I am trying to take the text a user submitted in my search engine and run it through pspell for any word suggestions kind of like www.google.com
I have this working but it is slow on multiple words any suggestions.
$search = "Tell me whatt yo thnk";
$pieces = explode(" ", $search);
function spell_check($word)
{
$pspell_link = pspell_new ("en");
$suggestions = pspell_suggest
($pspell_link, $word);
return $suggestions[0];
}
for ($i=0; $i < count($pieces); $i++)
{
print spell_check($pieces[$i]);
echo " ";
}