警告:mysql_fetch_array() 期望参数 1 是给定的资源、对象

发布于 2024-10-11 04:34:18 字数 491 浏览 2 评论 0原文

当我尝试运行此代码时收到上述警告:

$mysqli=new mysqli("localhost", "***", "***","***") or die(mysql_error());


              function checklogin($username, $password){
                global $mysqli;


                $result = $mysqli->prepare("SELECT * FROM users WHERE username = ?");
                $result->bind_param("s", $username);
                $result->execute();

            if($result != false){

                $dbArray=mysql_fetch_array($result);

I am getting the above warning when I try to run this code:

$mysqli=new mysqli("localhost", "***", "***","***") or die(mysql_error());


              function checklogin($username, $password){
                global $mysqli;


                $result = $mysqli->prepare("SELECT * FROM users WHERE username = ?");
                $result->bind_param("s", $username);
                $result->execute();

            if($result != false){

                $dbArray=mysql_fetch_array($result);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

淡淡的优雅 2024-10-18 04:34:18

您在代码中混合了 mysql 和 mysqli 调用。使用mysqli_fetch_array而不是mysql_fetch_array

You are mixing mysql and mysqli calls in your code. Use mysqli_fetch_array instead of mysql_fetch_array.

魂归处 2024-10-18 04:34:18

您正在混合 mysqli 和传统的 mysql 命令。

使用 $result->fetch_array()

You are mixing mysqli and traditional mysql commands.

Use $result->fetch_array().

羁客 2024-10-18 04:34:18

您正在使用两组不同的函数... mysqli 和 mysql。
我认为您想使用 fetch_assoc() 方法。

查看 http://php.net/manual/en/book.mysqli.php

You're using two different sets of functions... mysqli and mysql.
I think you want to use the fetch_assoc() method.

Check out http://php.net/manual/en/book.mysqli.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文