你好我已经使用PHP大约一年了,昨天我有这个错误说“致命错误:未捕获错误:在字符串上调用成员函数fetch_array()”。这是我的代码
float
任何帮助将不胜感激,谢谢。
编辑:解决了,我没有意识到<?php
$conn = new mysqli('localhost', 'root', '', 'message');
$msg = $conn->query("SELECT * FROM message ORDER BY sent DESC");
while($row = $msg->fetch_array()){ //this line gave me that error
//do something
}
变量在我的while循环中。