1 Minute PHP Spellchecker Integration

PHP Spell Check > Documentation > Tutorials > Hello World

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 Every User Input

SourceCode:
#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