I've downloaded a code from a website to make a comment section. The comment form shows up but the following error is given:
Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given
What's the problem here? I tried several things but I really can't solve it myself, please help. This is the code:
// Error reporting:
error_reporting(E_ALL^E_NOTICE);
include "connect.php";
include "comment.class.php";
$comments = array();
$result = mysql_query("SELECT * FROM comments ORDER BY id ASC");
while($row = mysql_fetch_assoc($result))
{
$comments[] = new Comment($row);
}