drop table if exists comments; create table comments ( id int(10) default '0' not null auto_increment, nom char(20) default '' not null, prenom char(20) default '', email char(50) default '' , computer char(10), browser char(10), version char(10), comments char(200), primary key (id), key nom (nom) );