How does phpmyadmin create a database?
1. First log in to phpmyadmin. There are two methods. The first is The most common method is to directly click on the wampserver icon and then click on phpmyadmin to log in; the second is to enter http://localhost:8080/phpmyadmin in the browser address (note that 8080 is the port number, the default is 80 and can be left blank, abbreviation For http://localhost/phpmyadmin/, press the enter key)
2. Log in and start creating a new database:
Click New, page A new database will pop up on the left: fill in the database name (such as user), sorting rule (utf8-general_ci)
3. Click the Create button, and it will The user database we just created appears.
4. If the created database is not found on the left side of the page, it will appear after refreshing. The page sometimes responds slowly.
#5 The most important thing is that the name of the database should be meaningful and should not be chosen casually. Then the sorting rules must be written as mentioned above, otherwise it may be garbled.
The above is the detailed content of How to create a database in phpmyadmin. For more information, please follow other related articles on the PHP Chinese website!