gpt4 book ai didi

php - mysql_connect() : Access denied for user 'user' @'localhost'

转载 作者:行者123 更新时间:2023-11-29 01:19:14 27 4
gpt4 key购买 nike

我正在尝试连接到 mysql,但出现错误。我将我的服务器 ip 地址放入并使用端口 3306,应该使用哪个帖子?

<?php

$connection = mysql_connect("serer.ip:port", "user", "pass")
or die(mysql_error());

if ($connection) {$msg = "success";}
?>

<html>
<head>
</head>
<body>

<? echo "$msg"; ?>

</body>
</html>

这是它产生的错误:

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'user'@'localhost' (using password: YES) in /home/admin/domains/domain.com.au/public_html/db_connect.php on line 3 Access denied for user 'user'@'localhost' (using password: YES)

最佳答案

使用

$conn = mysql_connect($db_host,$db_user, $db_pass) or die("Error connecting to database");

端口自动选择为3306。

还要仔细检查以确保您用于连接的用户名和密码正确且允许访问。

关于php - mysql_connect() : Access denied for user 'user' @'localhost' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2650474/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com