Although in the native development, debugging the system may not use it, but for the future in the remote virtual host to place the MySQL database, will inevitably use the MySQL GUI tools such as phpMyAdmin, so it is necessary to familiarize yourself with how to use the local first.
So let's start with the installation configuration:
1. The phpMyAdmin downloaded to the general Web is a compressed package that we release into the Htdocs directory, such as Htdocs\phpmyadmin.
2. Open the phpMyAdmin directory, if there is a config.sample.inc.php file in this directory, and if so, rename it to config.inc.php. (depending on the version, it is possible to have the config.inc.php file directly, it does not need to rename, there may be no config.sample.inc.php or config.inc.php, then we will go to phpmyadmin\ Under the Libraries directory, copy the config.default.php to the phpMyAdmin directory and rename it to config.inc.php).
3. Open the config.inc.php file (you can use WordPad) to find $cfg[' blowfish_secret '] = '; $cfg[' Servers ' [$i] [' auth_type '] = ' cookie '; if $cfg[' The value of Servers ' [$i] [' Auth_type '] is a cookie, as seen earlier, so we must write a string of characters in the quotation marks of $cfg[' blowfish_secret ' = ', and you can interpret it as an authentication code. For example $cfg[' blowfish_secret '] = ' Sunec '. Save to exit.
At this point, phpmyadmin installation configuration work is finished, enter the browser, in the address bar input http://localhost/phpmyadmin/main.php, ( Here the path is based on the previous you will phpmyadmin decompression in the directory name of Htdocs, the smooth words, the page should appear let you enter the user name password screen, enter the user name password (mysql username password), and then into the main interface phpMyAdmin. As for the use of the method ~ is not here to expand, you can first find out for yourself ~
The above describes the PHPMyAdmin configuration PHPMyAdmin quick Configuration method, including the PHPMyAdmin configuration aspects, I hope that the PHP tutorial interested in a friend helpful.