Home > Data Entry, MySQL, PHP, Programming, Script Installation > Small Script To Use Aspell

Small Script To Use Aspell

November 30th, 2009

I need a small script so i can use Aspell online http://aspell.net/

I have the english dictionary here ftp://ftp.gnu.org/gnu/aspell/dict/en/aspell6-en-6.0-0.tar.bz2 which ill store in a database.

This will be used for web searching suggestions

Summary:

* A simple script to interface with aspell (in php)
* A database create table script to insert the dictionary words (example below)

mysql_query(”CREATE TABLE dict(
id bigint(20) NOT NULL auto_increment,
PRIMARY KEY(id),
word varchar(255)
“)or die(mysql_error());


Small Script To Use Aspell