Code : Tout sélectionner
# Structure de la table `news_HS`
#
CREATE TABLE news_HS (
ID int(5) NOT NULL auto_increment,
email text NOT NULL,
PRIMARY KEY (ID)
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Structure de la table `newsletter`
#
CREATE TABLE newsletter (
id int(5) NOT NULL auto_increment,
nom text NOT NULL,
prenom text NOT NULL,
email text NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;