Nanospell Spell Checking Software Components
JavaScript jQuery CKEditor TinyMCE PHP ASP.Net Classic ASP

PHP SpellChecker

1 Minute PHP Spellchecker Integration

A Quick integration will automatically spell-check all text-areas, input fields and Rich HTML Editors in you page.


Just set Fields property of either the SpellCheckButton or SpellAsYouType Class to "ALL".

Spell-Checking Ever User Input:

#PHP Source Code
require "/phpspellcheck/include.php"; // this path must lead to you PHP Spell Check Install  folder
//For a spell-check button that opens in a popup dialog.
$mySpell = new SpellCheckButton();
$mySpell->InstallationPath = "/phpspellcheck/";
$mySpell->Fields = "ALL";
echo $mySpell->SpellImageButton();

//For inline "spell-as-you-type" on right click
$mySpell = new SpellAsYouType();
$mySpell->InstallationPath = "/phpspellcheck/";
$mySpell->Fields = "ALL";
echo $mySpell->Activate();
                

Installation Help