phpMyAdmin的用户名和密码可以在phpMyAdmin配置文件config.default.php中查看,在config.default.php中配置的数据库用户名密码就是phpMyAdmin的用户名密码。
phpMyAdmin配置文件在libraries下的config.default.php中,主要配置如下:
一般的话,如果你的mysql和phpmyadmin放在同一服务器上,主机名就直接用localhost
代码如下
$cfg['Servers'][$i]['host'] = 'localhost';
然后就是要配置mysql的用户名和密码了:
代码如下
$cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['pass'] = *****';
推荐学习:phpmyadmin教程
Atas ialah kandungan terperinci 怎么看phpMyAdmin的用户名和密码. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!