gpt4 book ai didi

php - MySQL 错误 : Call to undefined function mysql_connect() [file] on line 4

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

我不断收到这个错误,而且我对 PHP 了解不多,但我想开始使用它和 MySQL,但是这个错误阻止了我继续学习!

Info
Server Program: Niginx
Installed Extras: PHP [5.6.4] | MySQL



文件:
<?php include "includes/config.php"; ?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" style+"text/css" href="css/main.css" />
<script type="text/javascript" language="javascript" src="javascript/main.js"></script>

</head>

<body>

</body>
</html>

配置.php:
<?php

//connect to database
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("chat") or die(mysql_error());

echo "Working";
?>

最佳答案

我假设您正在遵循有关连接到 MySQL 数据库的旧教程。

mysql_ 开头的命令库已弃用。在 php 中编写代码时不应该使用它,因为它将来会被“关闭”。看看at the mysql_connect() command's documentation了解更多信息。

值得庆幸的是,您可以通过多种替代方式连接到数据库,这些方式不会很快被关闭!为简单起见,我建议在您的情况下使用 mysqli_。图书馆。看起来很相似,对吧?您也以非常相似的方式使用它,check the documentation for mysqli_connect() .

将你的 mysql_ 命令转换为 mysqli_ 并不难,看看 this answer寻求更多帮助。

关于php - MySQL 错误 : Call to undefined function mysql_connect() [file] on line 4,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28480032/

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