phpmyadmin3.5.2安装教程
以cookies方式安装:
把以下代码修改后保存为config.inc.php文件,上传到phpmyadmin的根目录,就可以了。
<?php
/* Servers configuration */
$i = 0;
/* Server */
$i++;
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '你的用户名';//修改为你的用户名
$cfg['Servers'][$i]['password'] = '';//可以不填
/* End of servers configuration */
$cfg['DefaultLang'] = 'zh_CN';
?>
注意:如果你使用的是000webhost的主机,还要再修改
$cfg['Servers'][$i]['host'] = 'localhost';
把localhost修改为你的数据库地址。