What does phpmyadmin mean?
phpMyAdmin is a MySQL database management tool based on PHP and structured in Web-Base mode on the website host, allowing administrators to use the Web interface to manage MySQL databases. This web interface can be a better way to input complex SQL syntax in a simple way, especially when it comes to importing and exporting large amounts of data. One of the greater advantages is that phpMyAdmin is executed on the web server like other PHP programs, but you can use the HTML pages generated by these programs anywhere, that is, to remotely manage the MySQL database, and easily create, modify, and delete Databases and data tables. You can also use phpMyAdmin to create commonly used PHP syntax to facilitate the correctness of SQL syntax required when writing web pages.
phpmyadmin installation process
Search for the PhpMyAdmin installation package, download and install
Extract the downloaded file to the WEB access path . File directory such as phpmyadmin.
Configuration file
Then configure the config.default.php file under the libraries file in the directory.
$cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin'; $cfg['blowfish_secret'] = '123456'; $cfg['DefaultLang'] = 'zh-gb2312'; $cfg['DefaultCharset'] = 'gb2312'; $cfg['Servers'][$i]['auth_type'] = 'cookie';
After saving, enter in the browser: http://localhost/phpmyadmin/user_password.php
The above is the detailed content of What does phpmyadmin mean?. For more information, please follow other related articles on the PHP Chinese website!