Thread: Dark`s Source
View Single Post
  #9  
Old 16th October 2008, 01:41
Subzero's Avatar
Subzero Subzero is offline
Coder
 
Join Date: Jul 2008
P2P
Posts: 190
Default
Code:
-- 
-- Table structure for table `shoutbox`
-- 

CREATE TABLE `shoutbox` (
  `id` smallint(6) NOT NULL auto_increment,
  `userid` smallint(6) NOT NULL default '0',
  `username` varchar(25) NOT NULL default '',
  `date` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

-- 
-- Dumping data for table `shoutbox`
-- 

INSERT INTO `shoutbox` VALUES (1, 1, 'Dark', 1219955431, ';-)');
INSERT INTO `shoutbox` VALUES (2, 1, 'Dark', 1219962797, ':w00t:');
Reply With Quote
The Following User Says Thank You to Subzero For This Useful Post:
b33z (13th April 2009)