Aspell is no longer supported in PHP (since version 4.3.0), so use Pspell. To use in your scripts, download the GNU Aspell library here:
[
aspell.sourceforge.net]
Install the program. In order to use Pspell under Windows, you must copy aspell-15.dll from the bin folder of your GNU Aspell installation to a folder where PHP will be able to find it. Since WAMP comes with PHP4 and PHP5, we need to put the dll where both copies of PHP can find it.
For PHP4 put the dll file here:
C:\wamp\php4\extensions
For PHP5 put the dll file here:
C:\wamp\php\ext
Now edit your PHP4 and your PHP5 php.ini file, and add find this line:
extension=php_zip.dll
below that line add:
extension=aspell-15.dll
After you edit your php.ini files, restart apache for the new settings to take effect.