voici une partie de la table:
--
-- Table structure for table `chansons_test`
--
CREATE TABLE IF NOT EXISTS `chansons_test` (
`num` tinyint(3) NOT NULL,
`idch` tinyint(3) NOT NULL,
`chanson` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`downloaded` bigint(5) NOT NULL DEFAULT '0',
`heard` bigint(5) NOT NULL DEFAULT '0',
`idpseudo` int(5) NOT NULL COMMENT 'person who added this',
`file_duration` bigint(6) NOT NULL DEFAULT '0',
`file_size` bigint(10) NOT NULL DEFAULT '0',
`file_bitrate` int(3) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `chansons_test`
--
INSERT INTO `chansons_test` (`num`, `idch`, `chanson`, `downloaded`, `heard`, `idpseudo`, `file_duration`, `file_size`, `file_bitrate`) VALUES
(1, 1, 'Chanosn1', 0, 0, 3, 65773, 0, 0),
(2, 1, 'Chanosn2', 0, 0, 3, 81295, 0, 0),
(3, 1, 'Chanosn3', 0, 0, 3, 73284, 0, 0),
(4, 1, 'Chanosn4', 0, 0, 3, 114135, 0, 0),
(5, 1, 'Chanosn5', 0, 0, 3, 98877, 0, 0);