Hello group i have written a piece of code to test out pspell/aspell ....
<?
$pspell_config = pspell_config_create (\"en\");
$pspell_link = pspell_new_config ($pspell_config);
if (pspell_check ($pspell_link, \"testt\")) {
echo \"This is a valid spelling\";
} else {
echo \"Sorry, wrong spelling\";
}
?>
However when it runs it says that...
Call to undefined function: pspell_config_create()
Does this mean that aspell OR pspell are not set up correctly otr is there some error with code ?
Any thoughts or insights would be very much appreciated
Kind Regards
Paul