I have looked at literally hundreds of ways to parse but I do not know how to do it myself I just don't understand it really.
I have a word list text file like this
abbreviation
abuser
acceptances
acceptor
acceptors
accesses
accessories
accessory
accident
accidents
and it goes on about 100,000 words.
How could I grab those words and drop them into this table code to put them in my mysql database.
insert into `wordlist`(`wor d`) values ('this is where the words go');
insert into `wordlist`(`wor d`) values (word2');
insert into `wordlist`(`wor d`) values ('word3');
etc...
I have a word list text file like this
abbreviation
abuser
acceptances
acceptor
acceptors
accesses
accessories
accessory
accident
accidents
and it goes on about 100,000 words.
How could I grab those words and drop them into this table code to put them in my mysql database.
insert into `wordlist`(`wor d`) values ('this is where the words go');
insert into `wordlist`(`wor d`) values (word2');
insert into `wordlist`(`wor d`) values ('word3');
etc...
Comment