「mysql_fetch_array(): 指定された引数は有効な MySQL 結果リソースではありません...」というエラーが発生しました。このmysqlクエリに関係する行。
$result = mysql_query("select * from chat order by time desc limit 0,10");
$messages = array();
while($row = mysql_fetch_array($result)){
$messages[] = "<div class='message'><div class='messagehead'>" . $row[name] . " - " . date('g:i A M, d Y',$row[time]) . "</div><div class='messagecontent'>" . $row[message] . "</div></div>";
//The last posts date
$old = $row[time];
}
//Display the messages in an ascending order, so the newest message will be at the bottom
for($i=9;$i>=0;$i--){
echo $messages[$i];
}