```
To create a table in phpMyadmin, you must first access phpMyadmin through cPanel.

- Click on the database you want to create the table, which is located on the left side;

- Now click on "Create table", type the name of the table and the number of fields, and click "Run";

- One of your fields should be increased automatically. We normally use this field as

the requested line identifier (ID).

 In this field you must fill in the following:

1. Name;
2. Type INT (Integer);
3. Size (number of houses your whole number will have);
4. PRIMARY index;
5. Check the box "A.I." (so that the field is automatically incremented).

The other fields can be text with a character limit (VARCHAR, 255).

In addition, you can place other types of fields, depending on the data that

will be included in that field.

  

- After filling in all the data, just click "Save";

- It will be displayed in the created table.
```