我在访问我的数据库时遇到了一些问题。
该脚本之前在我的本地主机上工作过。我将它导入另一台服务器,另一台服务器给我一条拒绝访问的消息。
给出的消息是:Access denied for user 'root'@'10.4.1.163' (using password: YES)
我正在使用的脚本是:
<?php
// Connect to database server
mysql_connect("localhost", "root", "password") or die (mysql_error ());
// Select database
mysql_select_db("database") or die(mysql_error());
// SQL query
$strSQL = "SELECT * FROM users WHERE user_id='". $_SESSION['USER_ID'] ."'";
// Execute the query (the recordset $rs contains the result)
$rs = mysql_query($strSQL);
// Loop the recordset $rs
// Each row will be made into an array ($row) using mysql_fetch_array
while($row = mysql_fetch_array($rs)) {
// Write the value of the column FirstName (which is now in the array $row)
echo $row['Name'] . " ";
}
// Close the database connection
mysql_close();
?>
我还尝试将 localhost 更改为 IP 地址 10.4.1.163。
我的脚本有什么问题。我确信我使用的密码是正确的。
有人知道我该如何解决这个问题吗?