Pongo el codigo un poquito mas organizado a ver si me hago entender lo que debes hacer.
Código PHP:
Ver original<table width="154" height="187" border="0" align="center">
<tr>
<?php
$i = 0;
while ($i < 3) {
$nombre_archivo = mysql_result($resultado,$i,nombre_archivo
); //Crear filas hasta que salga del bucle
echo "<td><a href='noti.php?id=$id'><img src='./$nombre_archivo' width='150' height='134' border = '0' HSPACE='8' VSPACE='3' align='middle'><br><p align='justify' strip_tags $rest </a></td>";
if(($i+1)%3==0) {
echo '</tr><tr>';
}
$i++;
}
?>
</tr>
</table>