在线网站 mysqli_connect() 中的主机参数
host parameter in mysqli_connect() for online website
我是 PHP 开发的初学者。
在我的本地站中,我使用 xampp 托管我的项目并使用 localhost 设置我的主机参数。但是现在我已经在主机服务器上上传了我的项目,它给出了一个错误:
failed to connect to my sql: Access denied for user 'irdnir_harf'@'localhost' to database 'irdnir_harf'
我应该设置什么?
mysqli_connect()
具有以下语法:
mysqli_connect(hostname, username, password, database)
其中主机名通常是 localhost。
确保您的用户名和密码正确。如果没有另外设置,请使用 root
作为您的用户名,密码留空。
我是 PHP 开发的初学者。 在我的本地站中,我使用 xampp 托管我的项目并使用 localhost 设置我的主机参数。但是现在我已经在主机服务器上上传了我的项目,它给出了一个错误:
failed to connect to my sql: Access denied for user 'irdnir_harf'@'localhost' to database 'irdnir_harf'
我应该设置什么?
mysqli_connect()
具有以下语法:
mysqli_connect(hostname, username, password, database)
其中主机名通常是 localhost。
确保您的用户名和密码正确。如果没有另外设置,请使用 root
作为您的用户名,密码留空。