tubienestarenmismanos48
New Member
- Messages
- 4
- Reaction score
- 0
- Points
- 0
very interesting tut!!!thanks
Code:CREATE TABLE IF NOT EXISTS `users` ( `user_id` int(11) NOT NULL auto_increment, `username` varchar(225) NOT NULL default '', `password` varchar(225) NOT NULL default '', `email` varchar(225) NOT NULL default '', PRIMARY KEY (`user_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
This is a great tutorial, but I'm new to the concept of connecting PHP to a MySQL database...
What do you do with that first part for the database??