CREATE TABLE `applications` (
`id` int(100) NOT NULL auto_increment,
`userid` int(100) NOT NULL,
`username` text NOT NULL,
`appstatus` text NOT NULL,
`age` text NOT NULL,
`country` text NOT NULL,
`timezone` text NOT NULL,
`realname` text NOT NULL,
`modname` text NOT NULL,
`time` text NOT NULL,
`experience` text NOT NULL,
`message1` text NOT NULL,
`message2` text NOT NULL,
`message3` text NOT NULL,
`users` text NOT NULL,
`visitoripaddy` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=84 ;