create table words(
id int auto_increment primary key,
en_word varchar(128) not null,
ch_word varchar(256) not null
);
3.插入数据(只是举个例子,不必太计较单词是不是这个意思,英语很渣,又懒得查)
insert into words(en_word,ch_word) values('boy' , '男孩,男人');
insert into words(en_word,ch_word) values('school' , '学校');
insert into words(en_word,ch_word) values('university' , '学校,大学');
4.封装一下sql工具库 SqlTool.class.php