Creating Database Tables with phpMyAdmin
This tutorial assumes you’ve already logged in to phpMyAdmin: 1. Select the demo1234_members database here2. Enter a Name for the new table3. Enter the Number of Fields this new table is to have. Click Go 4. Enter the Field details within the new table5. 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 fields8. Click Save when done That’s it! Our new table (details) […]