Fatal error: Cannot use object of type mysqli_result as array in /home/william/public_html/forums/index.php on line 228

前端 未结 2 903
礼貌的吻别
礼貌的吻别 2021-01-23 16:54

Why won\'t this work? I keep getting that error. // Setup forum topics, post count and last post xxxxx

        $query = array(
            \'SELECT\'    =>         


        
2条回答
  •  不思量自难忘°
    2021-01-23 17:45

    You're trying to use a mysqli result ($result) as an array without calling fetch_array on it.

    Whatever framework you're using will probably provide a wrapper for this.

提交回复
热议问题