当调用未定义的方法mysqli_stmt :: get_result()时,我收到错误

时间:2016-06-20 03:05:08

标签: php mysql

我遇到了这个问题,我无法解决它,我浏览网站的所有答案,但我可以解决它,我的网站托管是hostinger.com

    if ($result) {
        $stmt = $this->conn->prepare("SELECT * FROM users WHERE email = ?");
        $stmt->bind_param("s", $email);
        $stmt->execute();
        $user = $stmt->get_result()->fetch_assoc();
        $stmt->close();

        return $user;
    } else {
        return false;
    }
}

这是php代码,谢谢

0 个答案:

没有答案