Código:
<html>
<body>
<?
$query = @mysql_query("SELECT * FROM `noticias` ORDER BY `id` DESC");
if (@mysql_num_rows($query))
{
while ($noticias = @mysql_fetch_array($query)) {
echo"<br>";
echo"<center><font face='verdana' size='1' color='red'><b>".$noticias['titulo']."</b></font></center><br>";
echo"<br>";
echo"<center><font face='verdana' size='1' color='orange'><b>".$noticias['noticia']."</b></font></center><br>";
echo"<br>";
echo"<center><font face=verdana size=1 color=blue><b>Noticia enviada por ".$noticias['autor']." ||
Fecha: ".$noticias['fecha']."</b></font></center><br>";
echo"<hr>";
}
}
else
{
echo "No hay noticias!!";
}
@mysql_free_result($noticias);
mysql_close($noticias);
?>
</body></html>
Me dice que tengo problemas en la linea 23 "mysql_close($noticias);"
Error: "No hay noticias!!
Warning: mysql_close(): supplied argument is not a valid MySQL-Link resource in C:\AppServ\www\Scripts\ej propios\Nueva carpeta\noticias.php on line 23"
Fijense a ver si encuentrar el error. GRaicas