//Conexion con la base
mysql_connect( "localhost", "root", "");//Ejecutamos la sentencia SQL
$result=mysql_db_query("noti_php","SELECT Titulo, Resumen, DATE_FORMAT (Fecha2, '%d/ %m/%y') as Fech2 FROM noticias ORDER BY Fecha2 DESC");
//Mostramos los registros
echo '<Marquee Behavior="Scroll" Direction="Up" Height="140" ScrollAmount="2"
ScrollDelay="100" onMouseOver="this.stop()" onMouseOut="this.start()">';
echo "<table>";
while ($row=mysql_fetch_array($result))
{
echo"<tr><td>".$row['Fecha2']."<BR><A target = '_blank' href='ver_noti_todo2.php?numero=".$row['numero']."'>".$row['Titulo']."</a><BR>".$row['Resumen']."<hr></td></tr>";
}//fin del while
echo"</table></marquee>";
?>
Pero me da este error:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in c:\wamp\www\pagina universidad 11-05-05\principal\INDEX.PHP on line 69
La linea 69 es: while ($row=mysql_fetch_array($result))
sera que me pueden orientar o decirme donde esta el error

