mysql_fetch_assoc()

Andrea Crocco

Utente Attivo
27 Apr 2016
77
0
6
salve a tutti!!
ho un problema con uno script di commenti
ecco il codice:
PHP:
<?php

// Error reporting:
error_reporting(E_ALL^E_NOTICE);

include "connect.php";
include "comment.class.php";


/*
/    Select all the comments and populate the $comments array with objects
*/

$comments = array();
$result = mysql_query("SELECT * FROM comments ORDER BY id ASC");

while($row = mysql_fetch_assoc($result))
{
    $comments[] = new Comment($row);
}

?>

il problema è questo: quando cerco di aprire la pagina visualizzo questo messaggio di errore su questo piccolo script: Warning: mysql_fetch_assoc() expects parameter 1 to be resource, boolean given in /var/www/vhosts/mondo-tech.it/httpdocs/demo.php on line 17
che mi consigliate di fare?
 

Discussioni simili