This tutorial assumes you’ve already logged in to phpMyAdmin:
1. Select the demo1234_members database here
2. Enter a Name for the new table
3. Enter the Number of Fields this new table is to have. Click Go
4. Enter the Field details within the new table
5. The first field is called ID, and it will be an integer that’s 4 characters in length. This is the Primary Key that will be automatically filled in (auto_increment) when new entries are added to the table
6. Selecting this option makes the ID field the Primary key in the table
7. The remaining fields will be CHAR (character) fields. Be sure the character length is set long enough to accommodate the fields
8. Click Save when done
That’s it! Our new table (details) has been successfully created within our database(demo1234_members) as indicated here
This is the end of the tutorial. You now know how to create new tables within a database using phpMyAdmin