You can insert a table in phpmyadmin in 2 easy ways:
#1, run a mysql query. I made one that is suppose to work for your tutorial.
When you just open PHPmyadmin you select your database, and then click "SQL" button at the top. Insert the next text and run it. The table should then be created.
PHP Code:
CREATE TABLE `dbUsers` ( `id` int(10) unsigned NOT NULL auto_increment, `username` varchar(16) NOT NULL, `password` char(255) NOT NULL, `email` varchar(25) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
#2, another way is to make it yourself. Also on the index of phpmyadmin, under the list of your tables, you can create a new one at the bottom. And you can then make it.
|