C
Connah N
Guest
i have just made a login system but i didnt make a sign up.
as im a newbie to php can you please help me make a sign up system
here is the sql script i used to make the tables:
CREATE TABLE `users` (
`id` int(3) NOT NULL auto_increment,
`login` varchar(8) default NULL,
`password` varchar(8) default NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;
as im a newbie to php can you please help me make a sign up system
here is the sql script i used to make the tables:
CREATE TABLE `users` (
`id` int(3) NOT NULL auto_increment,
`login` varchar(8) default NULL,
`password` varchar(8) default NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;