Use mysqli in example configuration

The mysql extension does not support some features we use and I think it
is safe to assume nearly everybody has mysqli.
This commit is contained in:
Michal Čihař
2011-12-14 09:51:18 +01:00
parent a074b4c6e2
commit 396e5716f8

View File

@@ -31,8 +31,8 @@ $cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp'; $cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false; $cfg['Servers'][$i]['compress'] = false;
/* Select mysqli if your server has it */ /* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysql'; $cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false; $cfg['Servers'][$i]['AllowNoPassword'] = false;
/* /*