views:

408

answers:

2

Is this possible to Integrate with any English Dictionary, so that every word entered in my text-box should be cross checked from the Dictionary and return me true/false.

+2  A: 

Depends what platform you're using. On most UNIX-based boxes, /usr/share/dict/words has a list of dictionary words. You can put the contents of that in an array and check the words with that.

Ben Alpert
+1  A: 

You should probably looking at the pspell_* functions to start. You might also want to look at something like ActiveSpell if you want to do the spell checking with ajax before the user clicks the submit button.

Zoredache