我已将数据库上传到phpmyadmin,并从htdocs编辑了config.php中的设置,尝试更改XAMPP版本并将索引编辑为db用户名,pw,db,但出现以下错误:
注意:会话已经启动-在104行忽略C:\ xampp \ htdocs \ includes \ global.php中的session_start() 注意:未定义的索引:第29行的C:\ xampp \ htdocs \ includes \ global.php中的sql_host 注意:未定义的索引:第29行的C:\ xampp \ htdocs \ includes \ global.php中的sql_user 注意:未定义的索引:第29行的C:\ xampp \ htdocs \ includes \ global.php中的sql_pass 注意:未定义的索引:第31行的C:\ xampp \ htdocs \ includes \ global.php中的db_name 无法选择数据库
这是我正在设置的新服务器。如何解决这些错误?我正在使用XAMPP 1.8.3-5 VC11
第26-31行
function db_connection()
{
global $config,$data_sql;
$data_sql = mysql_connect($config["sql_host"], $config["sql_user"], $config["sql_pass"]);
if (!$data_sql) die("Can't connect to MySql");
mysql_select_db($config["db_name"],$data_sql) or die("Can't select database");