gpt4 book ai didi

php - mysql 用户访问被拒绝

转载 作者:行者123 更新时间:2023-11-29 12:30:54 26 4
gpt4 key购买 nike

先生,我已将我的网站上传到托管当我运行它时,错误,我该如何解决这个问题我之前尝试过,没有那些显示数据库中有多少成员、主题和评论的代码它有效,但是当我输入代码来显示这一点时,它变得像访问被拒绝

<font face="comic sans MS">
<img src="image/header.jpg" width="100%">
<table border="1" widht="100%" height="50" align="center" bgcolor="#FBFBEF">
<tr>
<td width="90%" align="left" valign="bottom" ><img src="image/start.gif" alt="icon" width="26" height="26"></td>
<th><b>Welcome, Guest,please <a href="login.php" style="text-decoration:none; color:green">Login</a>" or "<a href="register.php" style="text-decoration:none; color:red">Register</a></b></th>
</tr>
<tr>
<td width="50%" align="left" valign="bottom"><font size="5" id="welcome"><strong>Welcome To Squad 3.0 Ghz FORUM</strong></font> </td>
<td id=clock align="right" valign="center"><strong><iframe src="http://free.timeanddate.com/clock/i4eh41xm/n108/tlsg/fn7/fs12/tct/pct/ftb/tt0/tw1/tm1/th1" frameborder="0" width="182" height="20" allowTransparency="true"></iframe><strong></td>
</tr>
<table border="1" bgcolor="#FBFBEF" width="100%">
<tr>

<td align="left" width="70%"><b><a href="index.php" ><img src="image/homeicon.png" widht="20" height="20"></td>

<td align="right" width="7%">
<?php
include 'connection.php';
$query1="select count(email) as num_user from user_login";
$result1=mysql_query($query1);
$row1=mysql_fetch_array($result1);
echo '*'.$row1['num_user'].'* Member';
?>
</td>&nbsp <td align="right" width="5%">
<?php
include 'connection.php';
$query2="select count(topic_id) as num_topic from topic";
$result2=mysql_query($query2);
$row2=mysql_fetch_array($result2);
echo '*'.$row2['num_topic'].'* Topic';
?>


</td>&nbsp <td align="right" width="7%">
<?php
include 'connection.php';
$query3="select count(topic_id) as num_comment from comment";
$result3=mysql_query($query3);
$row3=mysql_fetch_array($result3);
echo '*'.$row3['num_comment'].'* Comment';
?>

</td>
</tr>
</table>

这是我的代码,结果就在这里 http://uasforum22.zz.mu.zz.mu/

最佳答案

该错误表明您用于连接 mysql 数据库的用户名和密码不正确 - “用户访问被拒绝”。您的托管提供商很可能必须提供实用程序(cpanel)来创建/删除用户(和密码)。请创建一个新用户并为其分配一个密码,并在您的connection.php 中使用此凭据。另请记住暂时授予该用户所有权限。稍后,一旦您完成了数据库连接问题的测试,您可能需要降低访问权限。

关于php - mysql 用户访问被拒绝,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27539885/

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