Im Trying To Do A Spell Check, And Its Claiming A Undefined Function On aspell_new & aspell_check_raw.
I Got This From PHP.NET/aspell_new
This Is it's Exact Example Code, But It Parses?
<?php
$aspell_link = aspell_new("english");
if (aspell_check_raw($aspell_link, "test")) {
echo "This is a valid spelling";
} else {
echo "Sorry, wrong spelling";
}
?>