11-14-2012, 12:10 AM
-- Table structure for `postoffice`
-- ----------------------------
DROP TABLE IF EXISTS `postoffice`;
CREATE TABLE `postoffice` (
`index` int(5) NOT NULL DEFAULT '0',
`msgtype` int(5) DEFAULT NULL,
`msgcategory` int(5) DEFAULT NULL,
`recvdate` int(10) DEFAULT NULL,
PRIMARY KEY (`index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
Work for me
where does this go?, should i create new db the query it under there? or...

