Ninjakreborn Posted March 6, 2007 Share Posted March 6, 2007 I am using tinyMCE, and the client keeps asking me about spell checking. He wasn't happy with ESpell because it was only Internet explorer. I am looking into tinyMCE and saw PSpell support. I checked my info page, and PSpell is enabled. How do I actually just "test" to see if it is actually working, and functioning properly BEFORE trying to get it to work with the tinyMCE plugin. Quote Link to comment https://forums.phpfreaks.com/topic/41438-solved-pspell/ Share on other sites More sharing options...
trq Posted March 6, 2007 Share Posted March 6, 2007 Straight from the manual. <?php $pspell_link = pspell_new("en"); if (pspell_check($pspell_link, "testt")) { echo "This is a valid spelling"; } else { echo "Sorry, wrong spelling"; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/41438-solved-pspell/#findComment-200751 Share on other sites More sharing options...
Ninjakreborn Posted March 6, 2007 Author Share Posted March 6, 2007 Perfect, thanks. Quote Link to comment https://forums.phpfreaks.com/topic/41438-solved-pspell/#findComment-200772 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.