Yeah, took me about 1, maybe 2 weeks but I've finished.
If you're viewing this thread from RapidBug, you should know about it - if you're viewing it from any other forum, you won't know what this is.
Anyway, I've been working on a usersystem for a week days and finished it today.
I don't need to post any screenshots because I have a demo:
Download
Password
m0nstadot
Also, when you open the config.php file, you will need to edit your MySQL database details, once you have done that, execute this SQL code into your database:
I hope you enjoy the system as much as I did creating it.
If you want any more scripts/pages etc or find any bugs on system,
Thanks,
m0nsta. / markeriksson94 / Monsta.
If you're viewing this thread from RapidBug, you should know about it - if you're viewing it from any other forum, you won't know what this is.
Anyway, I've been working on a usersystem for a week days and finished it today.
I don't need to post any screenshots because I have a demo:
You must be registered for see links
.Download
You must be registered for see links
You must be registered for see links
You must be registered for see links
Password
m0nstadot
Also, when you open the config.php file, you will need to edit your MySQL database details, once you have done that, execute this SQL code into your database:
PHP:
CREATE TABLE IF NOT EXISTS `config` (
`url` varchar(300) NOT NULL,
`title` varchar(40) NOT NULL,
`email` varchar(150) NOT NULL,
`admin` varchar(25) NOT NULL,
`copyright` varchar(1000) NOT NULL,
`admin_notes` longtext NOT NULL,
`maintainance` varchar(1000) NOT NULL,
`forum` varchar(1) NOT NULL,
`forum_link` varchar(300) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
INSERT INTO `config` (`url`, `title`, `email`, `admin`, `copyright`, `admin_notes`, `maintainance`, `forum`, `forum_link`) VALUES
('http://mark-eriksson.com/habbousersystem', 'HabSys', '[email protected]', 'Mark Eriksson', 'Copyright © <strong>HabSys</strong> 2010', 'Hello\r\n:)', '0', '0', 'forum.php');
CREATE TABLE IF NOT EXISTS `faq` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`q` varchar(40) NOT NULL,
`a` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `news` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`title` varchar(40) NOT NULL,
`content` longtext NOT NULL,
`author` varchar(25) NOT NULL,
`comments` varchar(90) NOT NULL DEFAULT '0',
`date` varchar(90) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `news_c` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`newsid` varchar(90) NOT NULL,
`date` varchar(90) NOT NULL,
`author` varchar(25) NOT NULL,
`content` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `pm` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`to` varchar(25) NOT NULL,
`from` varchar(25) NOT NULL,
`subject` varchar(40) NOT NULL,
`content` longtext NOT NULL,
`date` varchar(90) NOT NULL,
`read` varchar(1) NOT NULL DEFAULT '0',
`tdelete` varchar(1) NOT NULL DEFAULT '0',
`fdelete` varchar(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `quick_req` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`name` varchar(25) NOT NULL,
`message` longtext NOT NULL,
`ip` varchar(90) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `spotlight` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`habboname` varchar(40) NOT NULL,
`habbohotel` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
CREATE TABLE IF NOT EXISTS `users` (
`id` int(90) NOT NULL AUTO_INCREMENT,
`username` varchar(25) NOT NULL,
`password` varchar(1000) NOT NULL,
`password_un` varchar(40) NOT NULL,
`rank` varchar(90) NOT NULL DEFAULT 'Member',
`email` varchar(150) NOT NULL,
`ip` varchar(90) NOT NULL,
`joindate` varchar(90) NOT NULL,
`messages` varchar(90) NOT NULL DEFAULT '0',
`habboname` varchar(40) NOT NULL,
`habbohotel` varchar(10) NOT NULL,
`msn` varchar(150) NOT NULL,
`yahoo` varchar(150) NOT NULL,
`twitter` varchar(30) NOT NULL,
`facebook` varchar(30) NOT NULL,
`aboutme` longtext NOT NULL,
`website` varchar(300) NOT NULL,
`page_visits` varchar(90) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
I hope you enjoy the system as much as I did creating it.
If you want any more scripts/pages etc or find any bugs on system,
You must be registered for see links
or send me a
You must be registered for see links
.Thanks,
m0nsta. / markeriksson94 / Monsta.