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