Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://home.deds.nl/~ pt2
- --
- -- Table structure for table `phpbb_smilies`
- --
- CREATE TABLE `phpbb_smilies` (
- `smilies_id` smallint(5) unsigned NOT NULL auto_increment,
- `code` varchar(50) default NULL,
- `smile_url` varchar(100) default NULL,
- `emoticon` varchar(75) default NULL,
- PRIMARY KEY (`smilies_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=43 ;
- --
- -- Dumping data for table `phpbb_smilies`
- --
- INSERT INTO `phpbb_smilies` VALUES (1, ':D', 'icon_biggrin.gif', 'Very Happy');
- INSERT INTO `phpbb_smilies` VALUES (2, ':-D', 'icon_biggrin.gif', 'Very Happy');
- INSERT INTO `phpbb_smilies` VALUES (3, ':grin:', 'icon_biggrin.gif', 'Very Happy');
- INSERT INTO `phpbb_smilies` VALUES (4, ':)', 'icon_smile.gif', 'Smile');
- INSERT INTO `phpbb_smilies` VALUES (5, ':-)', 'icon_smile.gif', 'Smile');
- INSERT INTO `phpbb_smilies` VALUES (6, ':smile:', 'icon_smile.gif', 'Smile');
- INSERT INTO `phpbb_smilies` VALUES (7, ':(', 'icon_sad.gif', 'Sad');
- INSERT INTO `phpbb_smilies` VALUES (8, ':-(', 'icon_sad.gif', 'Sad');
- INSERT INTO `phpbb_smilies` VALUES (9, ':sad:', 'icon_sad.gif', 'Sad');
- INSERT INTO `phpbb_smilies` VALUES (10, ':o', 'icon_surprised.gif', 'Surprised');
- INSERT INTO `phpbb_smilies` VALUES (11, ':-o', 'icon_surprised.gif', 'Surprised');
- INSERT INTO `phpbb_smilies` VALUES (12, ':eek:', 'icon_surprised.gif', 'Surprised');
- INSERT INTO `phpbb_smilies` VALUES (13, ':shock:', 'icon_eek.gif', 'Shocked');
- INSERT INTO `phpbb_smilies` VALUES (14, ':?', 'icon_confused.gif', 'Confused');
- INSERT INTO `phpbb_smilies` VALUES (15, ':-?', 'icon_confused.gif', 'Confused');
- INSERT INTO `phpbb_smilies` VALUES (16, ':???:', 'icon_confused.gif', 'Confused');
- INSERT INTO `phpbb_smilies` VALUES (17, '8)', 'icon_cool.gif', 'Cool');
- INSERT INTO `phpbb_smilies` VALUES (18, '8-)', 'icon_cool.gif', 'Cool');
- INSERT INTO `phpbb_smilies` VALUES (19, ':cool:', 'icon_cool.gif', 'Cool');
- INSERT INTO `phpbb_smilies` VALUES (20, ':lol:', 'icon_lol.gif', 'Laughing');
- INSERT INTO `phpbb_smilies` VALUES (21, ':x', 'icon_mad.gif', 'Mad');
- INSERT INTO `phpbb_smilies` VALUES (22, ':-x', 'icon_mad.gif', 'Mad');
- INSERT INTO `phpbb_smilies` VALUES (23, ':mad:', 'icon_mad.gif', 'Mad');
- INSERT INTO `phpbb_smilies` VALUES (24, ':P', 'icon_razz.gif', 'Razz');
- INSERT INTO `phpbb_smilies` VALUES (25, ':-P', 'icon_razz.gif', 'Razz');
- INSERT INTO `phpbb_smilies` VALUES (26, ':razz:', 'icon_razz.gif', 'Razz');
- INSERT INTO `phpbb_smilies` VALUES (27, ':oops:', 'icon_redface.gif', 'Embarassed');
- INSERT INTO `phpbb_smilies` VALUES (28, ':cry:', 'icon_cry.gif', 'Crying or Very sad');
- INSERT INTO `phpbb_smilies` VALUES (29, ':evil:', 'icon_evil.gif', 'Evil or Very Mad');
- INSERT INTO `phpbb_smilies` VALUES (30, ':twisted:', 'icon_twisted.gif', 'Twisted Evil');
- INSERT INTO `phpbb_smilies` VALUES (31, ':roll:', 'icon_rolleyes.gif', 'Rolling Eyes');
- INSERT INTO `phpbb_smilies` VALUES (32, ':wink:', 'icon_wink.gif', 'Wink');
- INSERT INTO `phpbb_smilies` VALUES (33, ';)', 'icon_wink.gif', 'Wink');
- INSERT INTO `phpbb_smilies` VALUES (34, ';-)', 'icon_wink.gif', 'Wink');
- INSERT INTO `phpbb_smilies` VALUES (35, ':!:', 'icon_exclaim.gif', 'Exclamation');
- INSERT INTO `phpbb_smilies` VALUES (36, ':?:', 'icon_question.gif', 'Question');
- INSERT INTO `phpbb_smilies` VALUES (37, ':idea:', 'icon_idea.gif', 'Idea');
- INSERT INTO `phpbb_smilies` VALUES (38, ':arrow:', 'icon_arrow.gif', 'Arrow');
- INSERT INTO `phpbb_smilies` VALUES (39, ':|', 'icon_neutral.gif', 'Neutral');
- INSERT INTO `phpbb_smilies` VALUES (40, ':-|', 'icon_neutral.gif', 'Neutral');
- INSERT INTO `phpbb_smilies` VALUES (41, ':neutral:', 'icon_neutral.gif', 'Neutral');
- INSERT INTO `phpbb_smilies` VALUES (42, ':mrgreen:', 'icon_mrgreen.gif', 'Mr. Green');
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_themes`
- --
- CREATE TABLE `phpbb_themes` (
- `themes_id` mediumint(8) unsigned NOT NULL auto_increment,
- `template_name` varchar(30) NOT NULL default '',
- `style_name` varchar(30) NOT NULL default '',
- `head_stylesheet` varchar(100) default NULL,
- `body_background` varchar(100) default NULL,
- `body_bgcolor` varchar(6) default NULL,
- `body_text` varchar(6) default NULL,
- `body_link` varchar(6) default NULL,
- `body_vlink` varchar(6) default NULL,
- `body_alink` varchar(6) default NULL,
- `body_hlink` varchar(6) default NULL,
- `tr_color1` varchar(6) default NULL,
- `tr_color2` varchar(6) default NULL,
- `tr_color3` varchar(6) default NULL,
- `tr_class1` varchar(25) default NULL,
- `tr_class2` varchar(25) default NULL,
- `tr_class3` varchar(25) default NULL,
- `th_color1` varchar(6) default NULL,
- `th_color2` varchar(6) default NULL,
- `th_color3` varchar(6) default NULL,
- `th_class1` varchar(25) default NULL,
- `th_class2` varchar(25) default NULL,
- `th_class3` varchar(25) default NULL,
- `td_color1` varchar(6) default NULL,
- `td_color2` varchar(6) default NULL,
- `td_color3` varchar(6) default NULL,
- `td_class1` varchar(25) default NULL,
- `td_class2` varchar(25) default NULL,
- `td_class3` varchar(25) default NULL,
- `fontface1` varchar(50) default NULL,
- `fontface2` varchar(50) default NULL,
- `fontface3` varchar(50) default NULL,
- `fontsize1` tinyint(4) default NULL,
- `fontsize2` tinyint(4) default NULL,
- `fontsize3` tinyint(4) default NULL,
- `fontcolor1` varchar(6) default NULL,
- `fontcolor2` varchar(6) default NULL,
- `fontcolor3` varchar(6) default NULL,
- `span_class1` varchar(25) default NULL,
- `span_class2` varchar(25) default NULL,
- `span_class3` varchar(25) default NULL,
- `img_size_poll` smallint(5) unsigned default NULL,
- `img_size_privmsg` smallint(5) unsigned default NULL,
- PRIMARY KEY (`themes_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
- --
- -- Dumping data for table `phpbb_themes`
- --
- INSERT INTO `phpbb_themes` VALUES (1, 'subSilver', 'subSilver', 'subSilver.css', '', 'E5E5E5', '000000', '006699', '5493B4', '', 'DD6900', 'EFEFEF', 'DEE3E7', 'D1D7DC', '', '', '', '98AAB1', '006699', 'FFFFFF', 'cellpic1.gif', 'cellpic3.gif', 'cellpic2.jpg', 'FAFAFA', 'FFFFFF', '', 'row1', 'row2', '', 'Verdana, Arial, Helvetica, sans-serif', 'Trebuchet MS', 'Courier, ''Courier New'', sans-serif', 10, 11, 12, '444444', '006600', 'FFA34F', '', '', '', NULL, NULL);
- INSERT INTO `phpbb_themes` VALUES (2, 'phpXP2', 'phpXP2', 'templates/phpXP2/phpXP2.css', '', 'FFFFFF', '', '', '', '', '', '', '', '', 'row1', 'row2', '', '', '', '', '', '', '', '', '', '', 'row1', 'row2', '', '', '', '', 0, 0, 0, '', '5C84C2', '689C31', '', '', '', NULL, NULL);
- INSERT INTO `phpbb_themes` VALUES (3, 'VB2', 'VB2', 'templates/VB2/VB2.css', '', 'FFFFFF', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0, 0, 0, '', 'FFBA00', '90A9B8', '', '', '', NULL, NULL);
- INSERT INTO `phpbb_themes` VALUES (6, 'Avalanche', 'Avalanche', 'Avalanche.css', '', 'E5E5E5', '000000', '006699', '5493B4', '', 'DD6900', 'EFEFEF', 'DEE3E7', 'D1D7DC', '', '', '', '98AAB1', '006699', 'FFFFFF', 'cellpic1.gif', 'cellpic3.gif', 'cellpic2.jpg', 'FAFAFA', 'FFFFFF', '', 'row1', 'row2', '', 'Verdana, Arial, Helvetica, sans-serif', 'Trebuchet MS', 'Courier, ''Courier New'', sans-serif', 10, 11, 12, '444444', '999999', 'f3a625', '', '', '', 0, 0);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_themes_name`
- --
- CREATE TABLE `phpbb_themes_name` (
- `themes_id` smallint(5) unsigned NOT NULL default '0',
- `tr_color1_name` char(50) default NULL,
- `tr_color2_name` char(50) default NULL,
- `tr_color3_name` char(50) default NULL,
- `tr_class1_name` char(50) default NULL,
- `tr_class2_name` char(50) default NULL,
- `tr_class3_name` char(50) default NULL,
- `th_color1_name` char(50) default NULL,
- `th_color2_name` char(50) default NULL,
- `th_color3_name` char(50) default NULL,
- `th_class1_name` char(50) default NULL,
- `th_class2_name` char(50) default NULL,
- `th_class3_name` char(50) default NULL,
- `td_color1_name` char(50) default NULL,
- `td_color2_name` char(50) default NULL,
- `td_color3_name` char(50) default NULL,
- `td_class1_name` char(50) default NULL,
- `td_class2_name` char(50) default NULL,
- `td_class3_name` char(50) default NULL,
- `fontface1_name` char(50) default NULL,
- `fontface2_name` char(50) default NULL,
- `fontface3_name` char(50) default NULL,
- `fontsize1_name` char(50) default NULL,
- `fontsize2_name` char(50) default NULL,
- `fontsize3_name` char(50) default NULL,
- `fontcolor1_name` char(50) default NULL,
- `fontcolor2_name` char(50) default NULL,
- `fontcolor3_name` char(50) default NULL,
- `span_class1_name` char(50) default NULL,
- `span_class2_name` char(50) default NULL,
- `span_class3_name` char(50) default NULL,
- PRIMARY KEY (`themes_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_themes_name`
- --
- INSERT INTO `phpbb_themes_name` VALUES (1, 'The lightest row colour', 'The medium row color', 'The darkest row colour', '', '', '', 'Border round the whole page', 'Outer table border', 'Inner table border', 'Silver gradient picture', 'Blue gradient picture', 'Fade-out gradient on index', 'Background for quote boxes', 'All white areas', '', 'Background for topic posts', '2nd background for topic posts', '', 'Main fonts', 'Additional topic title font', 'Form fonts', 'Smallest font size', 'Medium font size', 'Normal font size (post body etc)', 'Quote & copyright text', 'Code text colour', 'Main table header text colour', '', '', '');
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_topics`
- --
- CREATE TABLE `phpbb_topics` (
- `topic_id` mediumint(8) unsigned NOT NULL auto_increment,
- `forum_id` smallint(8) unsigned NOT NULL default '0',
- `topic_title` char(60) NOT NULL default '',
- `topic_poster` mediumint(8) NOT NULL default '0',
- `topic_time` int(11) NOT NULL default '0',
- `topic_views` mediumint(8) unsigned NOT NULL default '0',
- `topic_replies` mediumint(8) unsigned NOT NULL default '0',
- `topic_status` tinyint(3) NOT NULL default '0',
- `topic_vote` tinyint(1) NOT NULL default '0',
- `topic_type` tinyint(3) NOT NULL default '0',
- `topic_first_post_id` mediumint(8) unsigned NOT NULL default '0',
- `topic_last_post_id` mediumint(8) unsigned NOT NULL default '0',
- `topic_moved_id` mediumint(8) unsigned NOT NULL default '0',
- PRIMARY KEY (`topic_id`),
- KEY `forum_id` (`forum_id`),
- KEY `topic_moved_id` (`topic_moved_id`),
- KEY `topic_status` (`topic_status`),
- KEY `topic_type` (`topic_type`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=138 ;
- --
- -- Dumping data for table `phpbb_topics`
- --
- INSERT INTO `phpbb_topics` VALUES (6, 11, 'Fifa 06', 7, 1141063526, 5, 0, 0, 0, 0, 6, 6, 0);
- INSERT INTO `phpbb_topics` VALUES (5, 11, 'SWAT 4', 7, 1141063433, 6, 0, 0, 0, 0, 5, 5, 0);
- INSERT INTO `phpbb_topics` VALUES (4, 1, 'CyberWorld Voorwaarden,Regels', 4, 1141062150, 7, 0, 0, 0, 0, 4, 4, 0);
- INSERT INTO `phpbb_topics` VALUES (7, 11, 'Need For Speed : Most Wanted Black Edition(ISO)', 7, 1141063630, 4, 0, 0, 0, 0, 7, 7, 0);
- INSERT INTO `phpbb_topics` VALUES (8, 11, 'Bad Boys 2', 7, 1141063711, 4, 0, 0, 0, 0, 8, 8, 0);
- INSERT INTO `phpbb_topics` VALUES (9, 11, 'Delta Force Black Hawk Down', 7, 1141063886, 5, 0, 0, 0, 0, 9, 9, 0);
- INSERT INTO `phpbb_topics` VALUES (10, 11, 'NBA live 06', 7, 1141063995, 5, 0, 0, 0, 0, 10, 10, 0);
- INSERT INTO `phpbb_topics` VALUES (11, 11, 'Moto GP 3', 7, 1141064247, 3, 0, 0, 0, 0, 11, 11, 0);
- INSERT INTO `phpbb_topics` VALUES (12, 11, 'Torino 2006', 7, 1141064684, 2, 0, 0, 0, 0, 12, 12, 0);
- INSERT INTO `phpbb_topics` VALUES (13, 11, 'Hunting Unlimited 3', 7, 1141064811, 2, 0, 0, 0, 0, 13, 13, 0);
- INSERT INTO `phpbb_topics` VALUES (14, 11, 'Matrix: The Path of Neo', 7, 1141065087, 1, 0, 0, 0, 0, 14, 14, 0);
- INSERT INTO `phpbb_topics` VALUES (15, 10, 'Verzoek een Film', 4, 1141065126, 5, 0, 0, 0, 1, 15, 15, 0);
- INSERT INTO `phpbb_topics` VALUES (16, 11, 'F.E.A.R.', 7, 1141065211, 9, 1, 0, 0, 0, 16, 33, 0);
- INSERT INTO `phpbb_topics` VALUES (17, 11, 'Wolfenstein Enemy Territory', 7, 1141065298, 1, 0, 0, 0, 0, 17, 17, 0);
- INSERT INTO `phpbb_topics` VALUES (18, 11, 'Tactical Ops: Assault on Terror', 7, 1141065411, 2, 0, 0, 0, 0, 18, 18, 0);
- INSERT INTO `phpbb_topics` VALUES (19, 11, 'Max Payne 2', 7, 1141065558, 1, 0, 0, 0, 0, 19, 19, 0);
- INSERT INTO `phpbb_topics` VALUES (20, 11, 'Medal of Honor: Allied Assault', 7, 1141065627, 1, 0, 0, 0, 0, 20, 20, 0);
- INSERT INTO `phpbb_topics` VALUES (21, 10, 'Big Momma''s House 2', 4, 1141065670, 5, 0, 0, 0, 0, 21, 21, 0);
- INSERT INTO `phpbb_topics` VALUES (22, 11, 'Rugby Challenge 2006', 7, 1141065769, 1, 0, 0, 0, 0, 22, 22, 0);
- INSERT INTO `phpbb_topics` VALUES (23, 11, 'Age of Empires 3', 7, 1141065832, 2, 0, 0, 0, 0, 23, 23, 0);
- INSERT INTO `phpbb_topics` VALUES (24, 10, 'The Pink Panther (2006)', 4, 1141066021, 4, 0, 0, 0, 0, 24, 24, 0);
- INSERT INTO `phpbb_topics` VALUES (25, 11, 'Crashday 670 mb (megaupload)', 7, 1141066098, 7, 1, 0, 0, 0, 25, 26, 0);
- INSERT INTO `phpbb_topics` VALUES (27, 3, 'klein mededeling', 3, 1141072822, 6, 0, 0, 0, 0, 28, 28, 0);
- INSERT INTO `phpbb_topics` VALUES (28, 11, 'Soldier Of Forune 2 : double helix GOLD (ISO)', 7, 1141073102, 2, 0, 0, 0, 0, 29, 29, 0);
- INSERT INTO `phpbb_topics` VALUES (29, 11, 'NHL 2006', 7, 1141073232, 3, 0, 0, 0, 0, 30, 30, 0);
- INSERT INTO `phpbb_topics` VALUES (30, 12, 'Nero 7 Premium', 7, 1141073369, 3, 0, 0, 0, 0, 31, 31, 0);
- INSERT INTO `phpbb_topics` VALUES (31, 11, 'Football Manager 2006', 7, 1141074490, 4, 0, 0, 0, 0, 32, 32, 0);
- INSERT INTO `phpbb_topics` VALUES (32, 11, 'Star Wars Empire At War', 6, 1141114186, 3, 0, 0, 0, 0, 34, 34, 0);
- INSERT INTO `phpbb_topics` VALUES (33, 11, 'Tycoon City: New York', 6, 1141114776, 4, 0, 0, 0, 0, 35, 35, 0);
- INSERT INTO `phpbb_topics` VALUES (34, 12, 'Limewire Pro 4.10.8', 7, 1141136155, 4, 0, 0, 0, 0, 36, 36, 0);
- INSERT INTO `phpbb_topics` VALUES (36, 11, 'online games', 3, 1141145064, 5, 0, 0, 0, 0, 38, 38, 0);
- INSERT INTO `phpbb_topics` VALUES (37, 11, 'Verzoek een Game', 3, 1141145149, 5, 0, 0, 0, 2, 39, 39, 0);
- INSERT INTO `phpbb_topics` VALUES (38, 3, 'Categorie HACK', 3, 1141159234, 19, 1, 0, 1, 2, 40, 140, 0);
- INSERT INTO `phpbb_topics` VALUES (39, 24, 'Moderators??? who????', 3, 1141159620, 2, 0, 0, 0, 0, 41, 41, 0);
- INSERT INTO `phpbb_topics` VALUES (40, 11, 'Empire Earth 2 (fast ftp)', 6, 1141231877, 6, 0, 0, 0, 0, 42, 42, 0);
- INSERT INTO `phpbb_topics` VALUES (41, 13, '(clip) MADONNA - SORRY', 6, 1141247222, 1, 0, 0, 0, 0, 43, 43, 0);
- INSERT INTO `phpbb_topics` VALUES (42, 13, '(clip) Pink - Stupid Girls', 6, 1141247319, 0, 0, 0, 0, 0, 44, 44, 0);
- INSERT INTO `phpbb_topics` VALUES (43, 13, '(clip) Red Hot Chili Peppers - Aeroplane', 6, 1141247379, 1, 0, 0, 0, 0, 45, 45, 0);
- INSERT INTO `phpbb_topics` VALUES (44, 13, '(clip)Rammstein - Mein Teil', 6, 1141247441, 1, 0, 0, 0, 0, 46, 46, 0);
- INSERT INTO `phpbb_topics` VALUES (45, 13, '(clip)Queen - Radio Gaga', 6, 1141247479, 1, 0, 0, 0, 0, 47, 47, 0);
- INSERT INTO `phpbb_topics` VALUES (46, 13, '(clip) No Doubt - Just A Girl', 6, 1141247539, 0, 0, 0, 0, 0, 48, 48, 0);
- INSERT INTO `phpbb_topics` VALUES (47, 13, '(clip) Moby - Run On', 6, 1141247584, 0, 0, 0, 0, 0, 49, 49, 0);
- INSERT INTO `phpbb_topics` VALUES (48, 13, '(clip) Republica - Ready To Go', 6, 1141247629, 1, 0, 0, 0, 0, 50, 50, 0);
- INSERT INTO `phpbb_topics` VALUES (49, 13, '(clip) Lasgo, Milk inc. & Sylver - Insomnia Live TMF Awa', 6, 1141247685, 0, 0, 0, 0, 0, 51, 51, 0);
- INSERT INTO `phpbb_topics` VALUES (50, 13, '(clip) Faithless Feat Estelle - Why Go', 6, 1141247713, 1, 0, 0, 0, 0, 52, 52, 0);
- INSERT INTO `phpbb_topics` VALUES (51, 13, '(clip) Faithless - We Come One', 6, 1141247743, 1, 0, 0, 0, 0, 53, 53, 0);
- INSERT INTO `phpbb_topics` VALUES (52, 13, '(clip) Faithless - Insomnia', 6, 1141247772, 0, 0, 0, 0, 0, 54, 54, 0);
- INSERT INTO `phpbb_topics` VALUES (53, 13, '(clip) Faithless - God is a DJ', 6, 1141247803, 0, 0, 0, 0, 0, 55, 55, 0);
- INSERT INTO `phpbb_topics` VALUES (54, 13, '(clip) Greenday - Good Ridance(Time Of Your Lime)', 6, 1141247840, 1, 0, 0, 0, 0, 56, 56, 0);
- INSERT INTO `phpbb_topics` VALUES (55, 13, '(clip) Atomic Kitten - Eternal Flame', 6, 1141247872, 0, 0, 0, 0, 0, 57, 57, 0);
- INSERT INTO `phpbb_topics` VALUES (56, 13, '(clip) Linkin Park - Breaking The Habit', 6, 1141247909, 1, 0, 0, 0, 0, 58, 58, 0);
- INSERT INTO `phpbb_topics` VALUES (57, 13, '(clip) Christina Aguilera - Genie In The Bottle', 6, 1141247940, 0, 0, 0, 0, 0, 59, 59, 0);
- INSERT INTO `phpbb_topics` VALUES (58, 13, '(clip) Jenifer Lopez - If U Had My Love', 6, 1141247974, 0, 0, 0, 0, 0, 60, 60, 0);
- INSERT INTO `phpbb_topics` VALUES (59, 13, '(clip) Girls Aloud - Sound of The Underground', 6, 1141247998, 1, 0, 0, 0, 0, 61, 61, 0);
- INSERT INTO `phpbb_topics` VALUES (60, 13, '(clip) Britney Spears - Chris Cox Megamix good quality', 6, 1141248030, 0, 0, 0, 0, 0, 62, 62, 0);
- INSERT INTO `phpbb_topics` VALUES (61, 13, '(clip) Christina Aguilera - Fighter', 6, 1141248106, 0, 0, 0, 0, 0, 63, 63, 0);
- INSERT INTO `phpbb_topics` VALUES (62, 13, '(clip) Limp Bizkit - Sanitarium (Mtv Metallica Icon)', 6, 1141248142, 1, 0, 0, 0, 0, 64, 64, 0);
- INSERT INTO `phpbb_topics` VALUES (63, 13, '(clip) Avril Lavigne - Fuel (Mtv Metallica Icon)', 6, 1141248176, 0, 0, 0, 0, 0, 65, 65, 0);
- INSERT INTO `phpbb_topics` VALUES (64, 13, '(clip) Metallica - The Unforgiven', 6, 1141248204, 0, 0, 0, 0, 0, 66, 66, 0);
- INSERT INTO `phpbb_topics` VALUES (65, 13, '(clip) Britney Spears - Everytime (Uncensored)', 6, 1141248255, 1, 0, 0, 0, 0, 67, 67, 0);
- INSERT INTO `phpbb_topics` VALUES (66, 13, '(clip) Britney Spears - Toxic', 6, 1141248290, 1, 0, 0, 0, 0, 68, 68, 0);
- INSERT INTO `phpbb_topics` VALUES (67, 13, '(clip) Destinys Child - Lose My Breath', 6, 1141248323, 0, 0, 0, 0, 0, 69, 69, 0);
- INSERT INTO `phpbb_topics` VALUES (68, 13, '(clip) Madonna - Die Another Day', 6, 1141248357, 0, 0, 0, 0, 0, 70, 70, 0);
- INSERT INTO `phpbb_topics` VALUES (69, 13, '(clip) Shakira - Don''t Bother', 6, 1141248390, 1, 0, 0, 0, 0, 71, 71, 0);
- INSERT INTO `phpbb_topics` VALUES (70, 13, '(clip) Madonna - Hung Up', 6, 1141248424, 0, 0, 0, 0, 0, 72, 72, 0);
- INSERT INTO `phpbb_topics` VALUES (71, 13, '(clip) Evanescence - My Immortal', 6, 1141248459, 0, 0, 0, 0, 0, 73, 73, 0);
- INSERT INTO `phpbb_topics` VALUES (72, 13, '(clip) Armin-Van Buuren&DJ Tiesto Present Alibi - Eterni', 6, 1141248485, 0, 0, 0, 0, 0, 74, 74, 0);
- INSERT INTO `phpbb_topics` VALUES (73, 13, '(clip) Avril Lavigne - Complicated', 6, 1141248505, 1, 0, 0, 0, 0, 75, 75, 0);
- INSERT INTO `phpbb_topics` VALUES (74, 13, '(clip) Beyonce - Naughty Girl', 6, 1141248531, 0, 0, 0, 0, 0, 76, 76, 0);
- INSERT INTO `phpbb_topics` VALUES (75, 13, '(clip) Black Eyed Peas - Don''t Lie', 6, 1141248555, 1, 0, 0, 0, 0, 77, 77, 0);
- INSERT INTO `phpbb_topics` VALUES (76, 13, '(clip) Bloodhound Gang - Uhn tiss uhn tiss', 6, 1141248579, 1, 0, 0, 0, 0, 78, 78, 0);
- INSERT INTO `phpbb_topics` VALUES (77, 13, '(clip) Danni Minogue - All I Wanna Do', 6, 1141248605, 3, 0, 0, 0, 0, 79, 79, 0);
- INSERT INTO `phpbb_topics` VALUES (78, 13, '(clip) Kylie Minogue - Can''t Get You Out Of My Head', 6, 1141297064, 0, 0, 0, 0, 0, 80, 80, 0);
- INSERT INTO `phpbb_topics` VALUES (79, 13, '(clip) Pink - Get The Party Started', 6, 1141297086, 0, 0, 0, 0, 0, 81, 81, 0);
- INSERT INTO `phpbb_topics` VALUES (80, 13, '(clip) Public Domain - Operation Blade', 6, 1141297109, 1, 0, 0, 0, 0, 82, 82, 0);
- INSERT INTO `phpbb_topics` VALUES (81, 13, '(clip) Britney Spears & Christina Aguilera & Madonna', 6, 1141297132, 1, 0, 0, 0, 0, 83, 83, 0);
- INSERT INTO `phpbb_topics` VALUES (82, 13, '(clip) Dido - White Flag', 6, 1141297156, 1, 0, 0, 0, 0, 84, 84, 0);
- INSERT INTO `phpbb_topics` VALUES (83, 13, '(clip) Britney Spears - Do Somethin', 6, 1141297183, 1, 0, 0, 0, 0, 85, 85, 0);
- INSERT INTO `phpbb_topics` VALUES (84, 13, '(clip) Avril Lavigne with Goo Goo Dolls - Iris', 6, 1141297208, 0, 0, 0, 0, 0, 86, 86, 0);
- INSERT INTO `phpbb_topics` VALUES (85, 13, '(clip) Bif Naked - Nothing Else Matters', 6, 1141297229, 0, 0, 0, 0, 0, 87, 87, 0);
- INSERT INTO `phpbb_topics` VALUES (86, 13, '(clip) Dannii Minogue - I Begin To Wonder', 6, 1141297249, 0, 0, 0, 0, 0, 88, 88, 0);
- INSERT INTO `phpbb_topics` VALUES (87, 13, '(clip) Dannii Minogue - I Begin To Wonder', 6, 1141297268, 1, 0, 0, 0, 0, 89, 89, 0);
- INSERT INTO `phpbb_topics` VALUES (88, 13, '(clip) Destinys Child - Nasty Girl', 6, 1141297291, 1, 0, 0, 0, 0, 90, 90, 0);
- INSERT INTO `phpbb_topics` VALUES (89, 13, '(clip) Eve feat. Alicia Keys - Gangsta Lovin''', 6, 1141297315, 1, 0, 0, 0, 0, 91, 91, 0);
- INSERT INTO `phpbb_topics` VALUES (90, 13, '(clip) Faithless Feat Estelle - Why Go - 2005', 6, 1141297337, 1, 0, 0, 0, 0, 92, 92, 0);
- INSERT INTO `phpbb_topics` VALUES (91, 13, '(clip) Girls Aloud - Long Hot Summer', 6, 1141297368, 1, 0, 0, 0, 0, 93, 93, 0);
- INSERT INTO `phpbb_topics` VALUES (92, 13, '(clip) Chemical Brothers - Hey Boy Hey Girl', 6, 1141297389, 1, 0, 0, 0, 0, 94, 94, 0);
- INSERT INTO `phpbb_topics` VALUES (93, 13, '(clip) Kelly Clarkson - Behind These Hazel Eyes', 6, 1141297410, 1, 0, 0, 0, 0, 95, 95, 0);
- INSERT INTO `phpbb_topics` VALUES (94, 13, '(clip) Limpbizkit - Home Sweet Home Bittersweet Symphony', 6, 1141297437, 1, 0, 0, 0, 0, 96, 96, 0);
- INSERT INTO `phpbb_topics` VALUES (95, 13, '(clip) Nirvana - Smells Like Teen Spirit', 6, 1141297456, 0, 0, 0, 0, 0, 97, 97, 0);
- INSERT INTO `phpbb_topics` VALUES (96, 13, '(clip) Pink Floyd - Another Brick in The Wall', 6, 1141297474, 1, 0, 0, 0, 0, 98, 98, 0);
- INSERT INTO `phpbb_topics` VALUES (97, 13, '(clip) Britney Spears - Baby One More Time', 6, 1141297507, 1, 0, 0, 0, 0, 99, 99, 0);
- INSERT INTO `phpbb_topics` VALUES (98, 13, '(clip) Britney Spears - Sometimes', 6, 1141297545, 0, 0, 0, 0, 0, 100, 100, 0);
- INSERT INTO `phpbb_topics` VALUES (99, 13, '(clip) Seether&Amy Lee - Broken', 6, 1141297566, 0, 0, 0, 0, 0, 101, 101, 0);
- INSERT INTO `phpbb_topics` VALUES (100, 13, '(clip) Silbermond - Symphonie', 6, 1141297583, 1, 0, 0, 0, 0, 102, 102, 0);
- INSERT INTO `phpbb_topics` VALUES (101, 13, '(clip) The PussyCatdolls - Stick With U', 6, 1141297603, 0, 0, 0, 0, 0, 103, 103, 0);
- INSERT INTO `phpbb_topics` VALUES (102, 13, '(clip) Benny Bennasi - Satisfaction', 6, 1141297625, 0, 0, 0, 0, 0, 104, 104, 0);
- INSERT INTO `phpbb_topics` VALUES (103, 13, '(clip) Britney Spears - Born To Make You Happy', 6, 1141297653, 2, 0, 0, 0, 0, 105, 105, 0);
- INSERT INTO `phpbb_topics` VALUES (104, 13, '(clip) Britney Spears - Overprotected [Darkchild Remix]', 6, 1141297678, 0, 0, 0, 0, 0, 106, 106, 0);
- INSERT INTO `phpbb_topics` VALUES (105, 13, '(clip) Britney Spears & Madonna - Me Against The Music', 6, 1141297695, 1, 0, 0, 0, 0, 107, 107, 0);
- INSERT INTO `phpbb_topics` VALUES (106, 13, '(clip) Metallica - Nothing Else Matters', 6, 1141297716, 1, 0, 0, 0, 0, 108, 108, 0);
- INSERT INTO `phpbb_topics` VALUES (107, 13, '(clip) Metallica - Turn The Page', 6, 1141297739, 0, 0, 0, 0, 0, 109, 109, 0);
- INSERT INTO `phpbb_topics` VALUES (108, 13, '(clip) Stacie Orrico - (There''s Gotta Be) More To Life', 6, 1141297764, 0, 0, 0, 0, 0, 110, 110, 0);
- INSERT INTO `phpbb_topics` VALUES (109, 13, '(clip) Korn - One (Mtv Metallica Icon)', 6, 1141298938, 1, 0, 0, 0, 0, 111, 111, 0);
- INSERT INTO `phpbb_topics` VALUES (110, 13, '(clip) Sum 41 - For Whom The Bell Tolls [Metallica Icon]', 6, 1141298966, 1, 0, 0, 0, 0, 112, 112, 0);
- INSERT INTO `phpbb_topics` VALUES (111, 13, '(clip) Iron Maiden - The Wicker Man', 6, 1141298986, 0, 0, 0, 0, 0, 113, 113, 0);
- INSERT INTO `phpbb_topics` VALUES (112, 13, '(clip) Alanis Morisette - Hands Clean', 6, 1141299003, 0, 0, 0, 0, 0, 114, 114, 0);
- INSERT INTO `phpbb_topics` VALUES (113, 13, '(clip) Ben Moody & Anastacia - Everything Burns', 6, 1141299030, 0, 0, 0, 0, 0, 115, 115, 0);
- INSERT INTO `phpbb_topics` VALUES (114, 13, '(clip) Cranberries - Just My Imagination', 6, 1141299068, 0, 0, 0, 0, 0, 116, 116, 0);
- INSERT INTO `phpbb_topics` VALUES (115, 13, '(clip) Dannii Minogue - You Won''t Forget About Me', 6, 1141299087, 0, 0, 0, 0, 0, 117, 117, 0);
- INSERT INTO `phpbb_topics` VALUES (116, 13, '(clip) Delerium feat. Sarah McLahan - Silence', 6, 1141299105, 0, 0, 0, 0, 0, 118, 118, 0);
- INSERT INTO `phpbb_topics` VALUES (117, 13, '(clip) Limp Bizkit - Take A Look Around [Mission Impossible', 6, 1141299126, 0, 0, 0, 0, 0, 119, 119, 0);
- INSERT INTO `phpbb_topics` VALUES (118, 13, '(clip) Marilyn Manson - I Don''t Like The Drugs (But The Drug', 6, 1141299147, 0, 0, 0, 0, 0, 120, 120, 0);
- INSERT INTO `phpbb_topics` VALUES (119, 13, '(clip) Metallica - I Disappear [Mission Impossible 2 Theme]', 6, 1141299172, 1, 0, 0, 0, 0, 121, 121, 0);
- INSERT INTO `phpbb_topics` VALUES (120, 13, '(clip) Natalie Imbruglia - That Day', 6, 1141299193, 1, 0, 0, 0, 0, 122, 122, 0);
- INSERT INTO `phpbb_topics` VALUES (121, 13, '(clip) Nelly Furtado - ... On The Radio', 6, 1141299213, 0, 0, 0, 0, 0, 123, 123, 0);
- INSERT INTO `phpbb_topics` VALUES (122, 13, '(clip) Pink - Don''t Let Me Get Me', 6, 1141299230, 0, 0, 0, 0, 0, 124, 124, 0);
- INSERT INTO `phpbb_topics` VALUES (123, 13, '(clip) Pink - You Make Me Sick', 6, 1141299247, 0, 0, 0, 0, 0, 125, 125, 0);
- INSERT INTO `phpbb_topics` VALUES (124, 13, '(clip) Red Hot Chili Peppers - Otherside', 6, 1141299263, 0, 0, 0, 0, 0, 126, 126, 0);
- INSERT INTO `phpbb_topics` VALUES (125, 13, '(clip) Roxette - Fading Like A Flower', 6, 1141299281, 0, 0, 0, 0, 0, 127, 127, 0);
- INSERT INTO `phpbb_topics` VALUES (126, 13, '(clip) Sash! - Mysterious Times', 6, 1141299298, 1, 0, 0, 0, 0, 128, 128, 0);
- INSERT INTO `phpbb_topics` VALUES (127, 13, '(clip) Metallica - Enter Sandman', 6, 1141299317, 1, 0, 0, 0, 0, 129, 129, 0);
- INSERT INTO `phpbb_topics` VALUES (128, 13, '(clip) Metallica - Fuel', 6, 1141299333, 0, 0, 0, 0, 0, 130, 130, 0);
- INSERT INTO `phpbb_topics` VALUES (129, 13, '(clip) Metallica - No Leaf Clover (Live, S&M)', 6, 1141299351, 1, 0, 0, 0, 0, 131, 131, 0);
- INSERT INTO `phpbb_topics` VALUES (130, 13, '(clip) Metallica - The Memory Remains', 6, 1141299372, 0, 0, 0, 0, 0, 132, 132, 0);
- INSERT INTO `phpbb_topics` VALUES (131, 13, '(clip) Metallica - One', 6, 1141299389, 0, 0, 0, 0, 0, 133, 133, 0);
- INSERT INTO `phpbb_topics` VALUES (132, 13, '(clip) Metallica - The Unforgiven II', 6, 1141299423, 1, 0, 0, 0, 0, 134, 134, 0);
- INSERT INTO `phpbb_topics` VALUES (133, 13, '(clip) Charlotte Church - Crazy Chick', 6, 1141299519, 0, 0, 0, 0, 0, 135, 135, 0);
- INSERT INTO `phpbb_topics` VALUES (134, 13, '(clip) Sugababes - Shape', 6, 1141299554, 1, 0, 0, 0, 0, 136, 136, 0);
- INSERT INTO `phpbb_topics` VALUES (135, 13, '(clip) Tommy Lee&Limp Bizkit Feat. Lil Kim - Get Naked', 6, 1141299574, 0, 0, 0, 0, 0, 137, 137, 0);
- INSERT INTO `phpbb_topics` VALUES (136, 13, '(clip) Vanessa Mae - Storm', 6, 1141299591, 1, 0, 0, 0, 0, 138, 138, 0);
- INSERT INTO `phpbb_topics` VALUES (137, 23, 'Ubuntu Besturingssysteem (Gratis)', 3, 1141384089, 6, 0, 0, 0, 0, 139, 139, 0);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_topics_watch`
- --
- CREATE TABLE `phpbb_topics_watch` (
- `topic_id` mediumint(8) unsigned NOT NULL default '0',
- `user_id` mediumint(8) NOT NULL default '0',
- `notify_status` tinyint(1) NOT NULL default '0',
- KEY `topic_id` (`topic_id`),
- KEY `user_id` (`user_id`),
- KEY `notify_status` (`notify_status`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_topics_watch`
- --
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_user_group`
- --
- CREATE TABLE `phpbb_user_group` (
- `group_id` mediumint(8) NOT NULL default '0',
- `user_id` mediumint(8) NOT NULL default '0',
- `user_pending` tinyint(1) default NULL,
- KEY `group_id` (`group_id`),
- KEY `user_id` (`user_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_user_group`
- --
- INSERT INTO `phpbb_user_group` VALUES (1, -1, 0);
- INSERT INTO `phpbb_user_group` VALUES (2, 2, 0);
- INSERT INTO `phpbb_user_group` VALUES (3, 3, 0);
- INSERT INTO `phpbb_user_group` VALUES (4, 4, 0);
- INSERT INTO `phpbb_user_group` VALUES (5, 5, 0);
- INSERT INTO `phpbb_user_group` VALUES (6, 6, 0);
- INSERT INTO `phpbb_user_group` VALUES (7, 7, 0);
- INSERT INTO `phpbb_user_group` VALUES (8, 8, 0);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_users`
- --
- CREATE TABLE `phpbb_users` (
- `user_id` mediumint(8) NOT NULL default '0',
- `user_active` tinyint(1) default '1',
- `username` varchar(25) NOT NULL default '',
- `user_password` varchar(32) NOT NULL default '',
- `user_session_time` int(11) NOT NULL default '0',
- `user_session_page` smallint(5) NOT NULL default '0',
- `user_lastvisit` int(11) NOT NULL default '0',
- `user_regdate` int(11) NOT NULL default '0',
- `user_level` tinyint(4) default '0',
- `user_posts` mediumint(8) unsigned NOT NULL default '0',
- `user_timezone` decimal(5,2) NOT NULL default '0.00',
- `user_style` tinyint(4) default NULL,
- `user_lang` varchar(255) default NULL,
- `user_dateformat` varchar(14) NOT NULL default 'd M Y H:i',
- `user_new_privmsg` smallint(5) unsigned NOT NULL default '0',
- `user_unread_privmsg` smallint(5) unsigned NOT NULL default '0',
- `user_last_privmsg` int(11) NOT NULL default '0',
- `user_login_tries` smallint(5) unsigned NOT NULL default '0',
- `user_last_login_try` int(11) NOT NULL default '0',
- `user_emailtime` int(11) default NULL,
- `user_viewemail` tinyint(1) default NULL,
- `user_attachsig` tinyint(1) default NULL,
- `user_allowhtml` tinyint(1) default '1',
- `user_allowbbcode` tinyint(1) default '1',
- `user_allowsmile` tinyint(1) default '1',
- `user_allowavatar` tinyint(1) NOT NULL default '1',
- `user_allow_pm` tinyint(1) NOT NULL default '1',
- `user_allow_viewonline` tinyint(1) NOT NULL default '1',
- `user_notify` tinyint(1) NOT NULL default '1',
- `user_notify_pm` tinyint(1) NOT NULL default '0',
- `user_popup_pm` tinyint(1) NOT NULL default '0',
- `user_rank` int(11) default '0',
- `user_avatar` varchar(100) default NULL,
- `user_avatar_type` tinyint(4) NOT NULL default '0',
- `user_email` varchar(255) default NULL,
- `user_icq` varchar(15) default NULL,
- `user_website` varchar(100) default NULL,
- `user_from` varchar(100) default NULL,
- `user_sig` text,
- `user_sig_bbcode_uid` varchar(10) default NULL,
- `user_aim` varchar(255) default NULL,
- `user_yim` varchar(255) default NULL,
- `user_msnm` varchar(255) default NULL,
- `user_occ` varchar(100) default NULL,
- `user_interests` varchar(255) default NULL,
- `user_actkey` varchar(32) default NULL,
- `user_newpasswd` varchar(32) default NULL,
- PRIMARY KEY (`user_id`),
- KEY `user_session_time` (`user_session_time`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_users`
- --
- INSERT INTO `phpbb_users` VALUES (-1, 0, 'Anonymous', '', 0, 0, 0, 1140905506, 0, 0, 0.00, NULL, '', '', 0, 0, 0, 0, 0, NULL, 0, 0, 1, 1, 1, 1, 0, 1, 0, 1, 0, NULL, '', 0, '', '', '', '', '', NULL, '', '', '', '', '', '', '');
- INSERT INTO `phpbb_users` VALUES (2, 1, 'CyberWorld', 'aed8a721e4af4fda7e6b25a634bb0ebb', 1141072026, 0, 1141055828, 1140905506, 1, 3, 1.00, 2, 'dutch', 'd M Y h:i a', 0, 0, 1141071811, 0, 0, NULL, 1, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, '', 0, '[email protected]', '', '', '', '', '', '', '', '', '', '', '', '');
- INSERT INTO `phpbb_users` VALUES (3, 1, 'D!-LoSH', 'e077e1a544eec4f0307cf5c3c721d944', 1141804931, 0, 1141758024, 1140909752, 1, 6, 1.00, 2, 'dutch', 'D M d, Y g:i a', 0, 0, 1141758024, 0, 0, NULL, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 'http://home.deds.nl/~dilosh/avater/bilal2.JPG', 2, '[email protected]', '', '', '', '>>> Ölümü Tadmadim Ama Tadacagim Elbette\r\nCanima Kiymadim, Oda Gelir Belkide <<<', 'e0c4030ab6', '', '', '', '', '', '', NULL);
- INSERT INTO `phpbb_users` VALUES (4, 1, 'Visitor', '01a7566822c711e7f247fd482b4f160e', 1141747095, 0, 1141671454, 1140964586, 1, 4, 1.00, 3, 'dutch', 'D M d, Y g:i a', 0, 0, 1141746950, 0, 0, NULL, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, '1426681956440342ac741f5.jpg', 1, '[email protected]', '', '', '', '', '', '', '', '', '', '', '', NULL);
- INSERT INTO `phpbb_users` VALUES (5, 1, 'Mcali', '886edfca5b86fd5dac06af475948339d', 1141060481, 1, 1141060112, 1141060070, 0, 0, 1.00, 3, 'dutch', 'D M d, Y g:i a', 0, 0, 0, 0, 0, NULL, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, '', 0, '[email protected]', '', '', '', '', '', '', '', '', '', '', '', NULL);
- INSERT INTO `phpbb_users` VALUES (6, 1, 'spelenen', 'f51bd23ba3c063078e5119373d9fdaa2', 1141849228, 0, 1141832137, 1141060078, 0, 101, 1.00, 3, 'dutch', 'D M d, Y g:i a', 0, 0, 1141476810, 0, 0, NULL, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, '', 0, '[email protected]', '', '', '', '', '', '', '', '', '', '', '', NULL);
- INSERT INTO `phpbb_users` VALUES (7, 1, 'riza_turk', '27b505572975c7817088b2a949c9b5aa', 1141671541, 0, 1141243383, 1141063147, 0, 23, 1.00, 3, 'dutch', 'D M d, Y g:i a', 0, 0, 0, 0, 0, NULL, 0, 1, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0, 'http://www.voorbeginners.info/turkije/ataturk.jpg', 2, '[email protected]', '', 'http://www.freewebs.com/riza_turk', 'Purmerend', '[img:24b2f648aa]http://warez4fun.com/files/images/signature/boom8fo8ne6xy.gif[/img:24b2f648aa]', '24b2f648aa', '', '', '[email protected]', '', '', '', NULL);
- INSERT INTO `phpbb_users` VALUES (8, 1, 'Neo', '6cf256f37d3d404090a2f0dd7fe2c659', 1141477796, -4, 1141476570, 1141107372, 0, 1, 1.00, 6, 'dutch', 'D M d, Y g:i a', 0, 0, 1141476570, 0, 0, NULL, 0, 1, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, '', 0, '[email protected]', '', 'http://CyberCracker.be', 'Rotterdam', '', '', '', '', '[email protected]', 'Student, Medewerker ICT', 'Voetbal Auto''s Computers Videobewerking', '', NULL);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_vote_desc`
- --
- CREATE TABLE `phpbb_vote_desc` (
- `vote_id` mediumint(8) unsigned NOT NULL auto_increment,
- `topic_id` mediumint(8) unsigned NOT NULL default '0',
- `vote_text` text NOT NULL,
- `vote_start` int(11) NOT NULL default '0',
- `vote_length` int(11) NOT NULL default '0',
- PRIMARY KEY (`vote_id`),
- KEY `topic_id` (`topic_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
- --
- -- Dumping data for table `phpbb_vote_desc`
- --
- INSERT INTO `phpbb_vote_desc` VALUES (1, 38, 'Moet het categorie HACK ook erbij?', 1141159234, 0);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_vote_results`
- --
- CREATE TABLE `phpbb_vote_results` (
- `vote_id` mediumint(8) unsigned NOT NULL default '0',
- `vote_option_id` tinyint(4) unsigned NOT NULL default '0',
- `vote_option_text` varchar(255) NOT NULL default '',
- `vote_result` int(11) NOT NULL default '0',
- KEY `vote_option_id` (`vote_option_id`),
- KEY `vote_id` (`vote_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_vote_results`
- --
- INSERT INTO `phpbb_vote_results` VALUES (1, 1, 'Ja, Dat is erg handig', 2);
- INSERT INTO `phpbb_vote_results` VALUES (1, 2, 'Misschien, is het niet gevaarlijk? en onbetrouwbaar ?', 1);
- INSERT INTO `phpbb_vote_results` VALUES (1, 3, 'Nee, liever niet voor alle veiligheid', 1);
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_vote_voters`
- --
- CREATE TABLE `phpbb_vote_voters` (
- `vote_id` mediumint(8) unsigned NOT NULL default '0',
- `vote_user_id` mediumint(8) NOT NULL default '0',
- `vote_user_ip` char(8) NOT NULL default '',
- KEY `vote_id` (`vote_id`),
- KEY `vote_user_id` (`vote_user_id`),
- KEY `vote_user_ip` (`vote_user_ip`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Dumping data for table `phpbb_vote_voters`
- --
- INSERT INTO `phpbb_vote_voters` VALUES (1, 6, '510bcac0');
- INSERT INTO `phpbb_vote_voters` VALUES (1, 3, '507e98c6');
- INSERT INTO `phpbb_vote_voters` VALUES (1, 7, '54500743');
- INSERT INTO `phpbb_vote_voters` VALUES (1, 8, '5038ea14');
- -- --------------------------------------------------------
- --
- -- Table structure for table `phpbb_words`
- --
- CREATE TABLE `phpbb_words` (
- `word_id` mediumint(8) unsigned NOT NULL auto_increment,
- `word` char(100) NOT NULL default '',
- `replacement` char(100) NOT NULL default '',
- PRIMARY KEY (`word_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Dumping data for table `phpbb_words`
- --
Advertisement
Add Comment
Please, Sign In to add comment