CREATE TABLE `user_table` ( `_id` int(99) NOT NULL auto_increment, `username` varchar(100) NOT NULL default '', `password` varchar(100) NOT NULL default '', `perms` int(10) NOT NULL default '0', PRIMARY KEY (`_id`) ) TYPE=MyISAM COMMENT='example of simple user table'; # #Use this last line of code against your user_table table to create your basic admin user #and then create your own admin user, and delete this one # INSERT INTO user_table VALUES('','admin',md5('admin'),'777');