Hi guys, I have this little mistake, they could help me solve it.
if ($conexion)
{
$resultado = mysql_query("SELECT id, usuario, fecha, mensaje FROM comentarios ORDER BY id DESC", $conexion);
while ($fila = mysql_fetch_row($resultado))
{
echo "<B>Mensaje</B> #" . $fila[0] . "; ";
echo "<B>Escrito por:</B> " . $fila[1] . "; ";
echo "<B>Fecha:</B> " . $fila[2] . "; ";
echo "<BR>";
echo $fila[3];
echo "<HR>";
}
}
Warning: mysql_fetch_row () expects parameter 1 to be resource, boolean given in C: \ xampp \ htdocs \ comments.php on line 66