gpt4 book ai didi

php - mysql_close() : supplied argument is not a valid MySQL-Link

转载 作者:行者123 更新时间:2023-11-29 09:03:25 24 4
gpt4 key购买 nike

我刚刚托管了我的 self 培训网站,现在我收到此警告。我知道我一定没有打开警告通知,所以现在出现了。如何修复它。
您可以在此处查看警告消息site

这是我的 php 代码

<html>
<?php
require("db_connect.php");

?>
<head>
<title>Instant Blog</title>
<link href='images/home.ico' rel='icon' type='image/vnd.microsoft.icon'/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="postsContainer">
<?php while($row = mysql_fetch_array($result))
{
echo "<p class=\"postedText\">" . $row['post'] . "</p>";
}
$something = mysql_close($db_conn); //Warning points here.
?>
</div>
<form action="index.php" method="post">
<div class="container">
<textarea rows="10" name = "blogText" cols="150" class="blogBox"></textarea>
<input type="image" src="images/button.png" name="btnPost" value="Post" class="postButton" style="" padding-top: 2px;/>
</div>
</form>
</body>

最佳答案

如果有人错过了原始帖子中的评论,问题在于变量 $db_conn 是错误的。

关于php - mysql_close() : supplied argument is not a valid MySQL-Link,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7856442/

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