pour le moment y'a ca (j'ai fait un export pour vous montrer.
CREATE TABLE `wintitres` (
`ID` int(6) NOT NULL auto_increment,
`artist` varchar(50) collate latin1_general_ci NOT NULL,
`title` varchar(50) collate latin1_general_ci NOT NULL,
`heure_diff` datetime NOT NULL,
`duree` time NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=4 ;
--
-- Contenu de la table `wintitres`
--
INSERT INTO `wintitres` VALUES (1, 'Paul', 'A la recherche d''un titre', '2010-06-17 15:15:25', '14:55:40');
INSERT INTO `wintitres` VALUES (2, 'Laetitia', 'Un autre essai', '2010-06-30 16:12:01', '03:54:00');
INSERT INTO `wintitres` VALUES (3, 'Enzo', 'Dure dure d''être un bébé', '2010-07-08 16:32:20', '04:02:00');