Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/ewm0054/public_html/notas.php on line 6
notas.php :
Código PHP:
<?
include ('conex.php');
$sql="SELECT * FROM notas WHERE seccion='Actualidad' AND online='si' ORDER by fecha DESC";
$resultado = mysql_query($sql);
if ($row = mysql_fetch_array($resultado)) { //esta es la línea 6
include ('formato.php');
}
?>