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. 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"; } ?> 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. Link to comment https://forums.phpfreaks.com/topic/41438-solved-pspell/#findComment-200772 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.