I have this code in my phpMyAdmin config.inc.php:
/* Server 1 */
$i++;
$cfg['Servers'][$i]['host'] = 'server1.com:3306';
$cfg['Servers'][$i]['user'] = 'user1';
$cfg['Servers'][$i]['password'] = 'passwd1';
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server 2 */
$i++;
$cfg['Servers'][$i]['host'] = 'server2.com:3306';
$cfg['Servers'][$i]['user'] = 'user2';
$cfg['Servers'][$i]['password'] = 'passwd2';
$cfg['Servers'][$i]['auth_type'] = 'config';
Unfortunately, phpMyAdmin UI shows only one of the two servers. What am I missing here?