Home  >  Article  >  Database  >  What does phpmyadmin mean?

What does phpmyadmin mean?

藏色散人
藏色散人Original
2020-04-01 10:01:432535browse

What does phpmyadmin mean?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn