//Create the temporary table that the users information will be stored in.
//Copy and paste the code into MySQL

CREATE TABLE `temp_users` (
`confirm_code` varchar(65) NOT NULL default '',
`username` varchar(65) NOT NULL default '',
`user_email` varchar(65) NOT NULL default '',
`password` varchar(15) NOT NULL default ''
);


//Create the table that holds users information after they send confirmation email.
//Copy and paste the code into MySQL

CREATE TABLE `registered_users` (
`user_id` int(4) NOT NULL auto_increment,
`username` varchar(65) NOT NULL default '',
`user_email` varchar(65) NOT NULL default '',
`password` varchar(65) NOT NULL default '',
PRIMARY KEY (`user_id`)
) ;
