PhpAdmin installation, phpadmin
PhpAdmin is the same as Navicat.
Manages MySql Databases
However, he uses a browser to manage MySql databases.
Complete PHP environment setup steps
Http://www.cnblogs.com/azhe-style/p/php_new_env_build.html
1. Download phpAdmin
Https://www.phpmyadmin.net/
Click Download 4.6.5.1 to Download
Ii. Installation
Decompress the downloaded file. Place in D: \ phpwork \ projects
I renamed the decompressed file. The files in this directory can be accessed through a browser.
Where D: \ phpwork \ projects corresponds
Http://www.cnblogs.com/azhe-style/articles/apache_setup.htmlwork path
If you use the Listen configuration in httpd. conf, the access path of this project is
Http: // localhost: 8081/phpMyAdmin/index. php (you need to enable the Apache service)
Open your browser and access this address
The following error message is displayed:
The full name of mbstring is Multi-Byte String, which means that the mbstring extension has not been enabled and does not support multiple languages.
Open the php installation directory (http://www.cnblogs.com/azhe-style/articles/php_setup.html)
I installed it in this directory: D: \ phpwork \ php-7.0.13-Win32-VC14-x64
Use NotePad to open the following two files
Development is the development environment configuration file, which is usually used by developers. just copy the configuration and change it to php. ini.
Production is a production environment.
Modify two configuration files, search extension_dir, and modify both configuration files.
Remove ";", where ";" indicates the meaning of the comment.
Change the value to the ext directory under the php Directory. Modified inbound
Continue to search for extension = php_mbstring.dll. If yes, remove the previous ";"
If no location is found, add
Copy the php. ini-development file and change it to php. ini.
After the Apache service is restarted, access http: // localhost: 8081/phpMyAdmin/index. php again (you need to enable the Apache service)
The following error occurs:
As with the above method, modify the following three files
Remove the previous ";" and restart the Apache service and re-access http: // localhost: 8081/phpMyAdmin/index. php (you need to enable the Apache service)
Now the page is displayed.
Enter the MySql user name and password.