Quote:
Originally Posted by tdbk
What do I cut and paste out of which file to do this in phpmyadmin shep?
|
Here's the code to create the table:
Code:
CREATE TABLE IF NOT EXISTS vbspell (
word varchar(30) NOT NULL,
sound varchar(10) NOT NULL,
UNIQUE KEY word (word),
KEY sound (sound)
) TYPE=MyISAM
Go to the forum database, click the SQL tab, and paste that code into the field to run the query and it will create the table.
I'm not sure of the "best" order to do this in, but I did the import, then created the table, then imported the alternate dictionary files to the table, and everything works fine.
Hope this helps!