Re: [PHP] Re: insert text with no specific format into database table

2008-02-26 Thread jeffry s
thank you all. it is a great help.. On Tue, Feb 26, 2008 at 1:15 AM, Shawn McKenzie <[EMAIL PROTECTED]> wrote: > Shawn McKenzie wrote: > > jeffry s wrote: > >> i have text file and a table created with > >> > >> create table word( > >> id int not null auto_increment primary key, > >> word varchar

[PHP] Re: insert text with no specific format into database table

2008-02-25 Thread Shawn McKenzie
Shawn McKenzie wrote: > jeffry s wrote: >> i have text file and a table created with >> >> create table word( >> id int not null auto_increment primary key, >> word varchar(50), >> definition text >> ) >> >> the text contain list of words but not really in specific format >> >> word, some text defi

[PHP] Re: insert text with no specific format into database table

2008-02-25 Thread Shawn McKenzie
jeffry s wrote: > i have text file and a table created with > > create table word( > id int not null auto_increment primary key, > word varchar(50), > definition text > ) > > the text contain list of words but not really in specific format > > word, some text definition > word, some text definit