欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
PhpMyAdmin
来自开放百科 - 灰狐
(版本间的差异)
第2行: | 第2行: | ||
phpMyAdmin 是一个用PHP编写的,可以通过互联网控制和操作MySQL。通过phpMyAdmin可以完全对数据库进行操作,例如建立、复制/删除数据等等。 | phpMyAdmin 是一个用PHP编写的,可以通过互联网控制和操作MySQL。通过phpMyAdmin可以完全对数据库进行操作,例如建立、复制/删除数据等等。 | ||
+ | |||
+ | ==安装指南== | ||
+ | 创建 config.inc.php文件,包含以下内容: | ||
+ | <?php | ||
+ | $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/'; | ||
+ | $cfg['Servers'][$i]['host'] = 'localhost'; | ||
+ | $cfg['Servers'][$i]['auth_type'] = ''; | ||
+ | $cfg['Servers'][$i]['user'] = 'root'; | ||
+ | $cfg['Servers'][$i]['password'] = 'huihoo'; | ||
+ | $cfg['blowfish_secret'] = ''; | ||
+ | ?> | ||
==相关链接== | ==相关链接== | ||
*http://www.phpmyadmin.net/ | *http://www.phpmyadmin.net/ | ||
*下载 http://sourceforge.net/projects/phpmyadmin/ | *下载 http://sourceforge.net/projects/phpmyadmin/ |
2006年7月21日 (五) 22:28的版本
phpMyAdmin 是一个用PHP编写的,可以通过互联网控制和操作MySQL。通过phpMyAdmin可以完全对数据库进行操作,例如建立、复制/删除数据等等。
安装指南
创建 config.inc.php文件,包含以下内容:
<?php $cfg['PmaAbsoluteUri'] = 'http://localhost/phpmyadmin/'; $cfg['Servers'][$i]['host'] = 'localhost'; $cfg['Servers'][$i]['auth_type'] = ; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'huihoo'; $cfg['blowfish_secret'] = ; ?>
相关链接
分享您的观点