configurationphpMyAdmin连接到另一台MySql服务器

我已经在我的笔记本电脑上安装了WAMP服务器,为了简单起见,我想configurationphpMyAdmin以连接到另一台机器上的mysql服务器 ,以便我可以转储数据库表。

如果这是可能的(我相信是这样),any1是否知道phpMyAdmin设置文件位于何处?

wamp在我的笔记本电脑上的位置是C:\wamp 。 我注意到在C:\wamp\apps\phpmyadmin3.5.1但是里面有很多的PHP脚本。 我应该修改哪一个?

PHPMyAdmin的configuration文件位于根目录下,名为config.inc.php ,为了configuration要连接的服务器,可以查看这个页面了解更多信息。

以下是服务器configuration应该如何的示例:

 $i++; /* First server */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['host'] = 'mysql1.example.net'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['AllowNoPassword'] = false; $i++; /* Second server */ $cfg['Servers'][$i]['auth_type'] = 'cookie'; $cfg['Servers'][$i]['host'] = 'mysql2.example.net'; $cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['AllowNoPassword'] = false;