Sample config.inc.php template

I installed phpmyadmin to enable GUI access to a MySQL server on my IIS 7.0 with fastcgi support.
The problem was that it failed to connect to it. I had to recreate the config.inc.php from scratch.

Here is my config.inc.php:

< ?php $i = 0; $i++; $cfg['Servers'][$i]['host'] = '127.0.0.1'; $cfg['Servers'][$i]['port'] = '3306'; $cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; // put here your password after setting one (strongly recommended!) $cfg['Servers'][$i]['password'] = 'yourpasswordhere'; ?>