thats my SQLPHP Code:--
-- Table structure for table `staff`
--
CREATE TABLE `staff` (
`id` int(11) NOT NULL auto_increment,
`username` varchar(225) NOT NULL default '',
`password` text NOT NULL,
`email` text NOT NULL,
`level` int(1) NOT NULL default '0',
`ban` int(1) NOT NULL default '0',
`lastlogin` varchar(225) NOT NULL default 'never',
`ip` varchar(15) NOT NULL default '',
`avatar` text NOT NULL,
`habboname` text NOT NULL,
UNIQUE KEY `id` (`id`),
FULLTEXT KEY `password` (`password`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=308 ;
--
-- Dumping data for table `staff`
--
INSERT INTO `staff` VALUES (284, 'Admin', 'changeme', 'Changeme', 2, 0, 'never', '', '', '');





Reply With Quote


Sorry!
