--
-- Table structure for table `lyrics`
--
CREATE TABLE lyrics (
id int(7) NOT NULL auto_increment,
artist varchar(250) NOT NULL default '',
title varchar(250) NOT NULL default '',
album varchar(250) NOT NULL default '',
letter char(2) NOT NULL default '',
lyrics text NOT NULL,
PRIMARY KEY (id),
FULLTEXT KEY artist (artist),
FULLTEXT KEY title (title),
FULLTEXT KEY album (album)
) TYPE=MyISAM;
Example lyrics:
Code:
INSERT INTO lyrics VALUES (408924,'Wyclef Jean','Gunpowder','Unknown','W','I asked my mother why do you cry<br />\r\nshe said your brother had... he just died<br />\r\nWell I told him not to go outside<br />\r\nhe said he had to fight for his country\'s right<br />\r\nBut don\'t you know that mo-mother<br />\r\ndon\'t you know that we can\'t stop the violence, no<br />\r\nBecause the war is not over<br />\r\nuntil you can feel love, peace, and hear silence<br />\r\nBut I smell gunpowder (pow)<br />\r\nmy brother\'s been dead ever since<br />\r\nI didn\'t beleive it, but when I saw him I was convinced<br />\r\nTwo shots to the head he was already dead Lord,<br />\r\nI headed for revenge in the city of Port Au Prince<br />\r\nScreaming bro-brother<br />\r\ndon\'t you know that we can\'t stop the violence, no<br />\r\nBecause the war is not over<br />\r\nuntil you can feel love, peace, and hear silence<br />\r\nBut I smell gunpowder (Pow)<br />\r\nZion\'s gunpowder (pow)<br />\r\nL.A.\'s gunpowder (pow)<br />\r\nI wanna know why<br />\r\nChristians pray for a new day<br />\r\nwe don\'t need no, we don\'t need no, we don\'t need no<br />\r\nBut its still the same way<br />\r\nI wanna know why<br />\r\nghetto people pray for a new day<br />\r\nhey, hey, heeey<br />\r\nand its still the same way<br />\r\nBut the preacher man told me<br />\r\ngood things come to those who wait<br />\r\ndo good things come to those who wait?<br />\r\nI wanna know tell me<br />\r\ngood things come to those who wait<br />\r\ndo good things come to those who wait?<br />\r\nwe wanna know, we wanna know, we wanna know [pause]<br />\r\nPe-people<br />\r\ndon\'t you know that we can\'t stop the violence, no<br />\r\nbecause the war is not over<br />\r\nuntil you can feel love, peace, and hear the silence<br />\r\nbut I smell gunpowder (gunpowder)<br />\r\nBrooklyn\'s gunpowder (gunpowder)<br />\r\nShaolin\'s gunpowder (gunpowder)<br />\r\nUptown\'s gunpowder (gunpowder)<br />\r\nJersey\'s gunpowder (gunpowder)<br />\r\neven New Zealand\'s gunpowder (gunpowder)<br />\r\nAustralia\'s gunpowder (gunpowder)<br />\r\nBrixton\'s gunpowder (gunpowder)<br />\r\neven New Haven\'s gunpowder');