Nas.
Para que no te salga ese problema puedes hacer esto...
Cita: while($rowNot = mysql_fetch_array($_pagi_result)){
echo "<th><h1>$rowNot[notTitulo]</h1></th>";
echo nl2br (substr(($rowNot['notTexto']),0,150)) . "...";
if($rowNot[imagen]!='')
{
echo "<img src='images/$rowNot[imagen]' width=\"80\" height=\"60\" hspace=\"3\"
}
else
{
echo "Esta noticia no tiene imagen. puedes poner o una imagen por defecto o nada quitando el else";
}
border=\"0\" align=\"left\"/>";
echo "<a href=\"vernoticia.php?id_noticia=" . $rowNot['not_ID'] . "&cat_ID=" . $rowNot['notCategoriaID'] ."\" title=\"Ver noticia completa\">[Ver noticia completa]</a>";
}
Un saludo.