|
Howto & Style
PHP Tutorial // User Registration w/ SQL |
|
Views: 102,020 - Rating: 3.80
Comments: PLEASE CHECK OUT THE SECOND VIDEO OF THIS
A quick and easy user registration using php, sql and phpmyadmin.
F full size and source codes: http://www.neob TABLE `user` (
`id` int(10) unsigned NOT NULL auto_increment, `username` varchar(20) NOT NULL default '',
`password` varchar(50) NOT NULL default '',
`email` varchar(40) NOT NULL default '',
`ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT= DEFAULT CHARSET=latin1 AUTO_INCREMENT= ;