gpt4 book ai didi

php - 警告 :mysql_fetch_array() expects parameter 1 to be resource, 给出对象

转载 作者:行者123 更新时间:2023-12-03 00:21:26 25 4
gpt4 key购买 nike

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

$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);

最佳答案

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

关于php - 警告 :mysql_fetch_array() expects parameter 1 to be resource, 给出对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4635007/

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