要求是:Open up config.php and input the credentials of your MySql database.请问我具体该修改什么?我没有学过php。希望大神帮下忙。<?php /*AthenaHTTP*/if(!defined('AthenaHTTP')) header('Location: .');$DB_HOST = 'athena-mysql';$DB_USER = 'root';$DB_PASS = '123456';$DB_NAME = 'athena2';$TIME = strtotime(gmdate('M d Y H:i:s'));mysql_connect($DB_HOST, $DB_USER, $DB_PASS) or die(mysql_error());mysql_select_db($DB_NAME) or die(mysql_error());?>
1 回答
明月笑刀无情
TA贡献1828条经验 获得超4个赞
配置这里
$DB_HOST = 'athena-mysql'; ---mysql主机名或者ip地址
$DB_USER = 'root'; --用户名
$DB_PASS = '123456'; ---密码
$DB_NAME = 'athena2'; ---数据库名称
- 1 回答
- 0 关注
- 641 浏览
添加回答
举报
0/150
提交
取消