Código PHP:
<?
echo"<table border=0>";
$consulta=mysql_query("SELECT * FROM noticia where not_est='0' order by not_id desc limit 2");
$contador=1;
while ($a=mysql_fetch_array($consulta))
{
echo "";
$id=$a['not_id'];
$tn=$a['not_tit'];
$cont=$a['not_des_cort'];
$foto="noticias/".$id.".jpg";
if (file_exists($foto)){
$n="";
$s="<img src=".$foto." width=100 />";
}else{
$n="colspan=2";
$s="";}
echo("<tr><td align='center'>".$s."</td></tr><tr><td><h1>".$tn."</h1></td> </tr><tr><td><div class='noticia2'><span>".$cont."</span><a href='index.php?menu=notiprin.php' style='color:red'>ver mas</a></div><hr style='color:#000000'/></td></tr>");
}
echo"</table>";
?>