DROP TABLE IF EXISTS nuked_banned;
CREATE TABLE nuked_banned (
id int(11) NOT NULL auto_increment,
ip varchar(50) NOT NULL,
pseudo varchar(50) NOT NULL,
email varchar(80) NOT NULL,
texte text NOT NULL,
PRIMARY KEY (id)
);
DROP TABLE IF EXISTS nuked_block;
CREATE TABLE nuked_block (
bid int(10) NOT NULL auto_increment,
active int(1) DEFAULT ´0´ NOT NULL,
position int(2) DEFAULT ´0´ NOT NULL,
module varchar(100) NOT NULL,
titre text NOT NULL,
content text NOT NULL,
type varchar(30) DEFAULT ´0´ NOT NULL,
nivo int(1) DEFAULT ´0´ NOT NULL,
page text NOT NULL,
PRIMARY KEY (bid)
Si tu mets ceci comme ca sans les commentaires, que tu dit mysql ?!