Código PHP:
<?php
while($rowNot = mysql_fetch_array($_pagi_result)){
?>
<table id="listanoticias">
<tr>
<td rowspan="5"><?php echo "<img src=\"imagenes/".$rowNot['imagen']."\" width=\"120\" height=\"90\" alt=\"Descripcion\" />"; ?></td>
</tr>
<tr><td><?php echo stripslashes($rowNot['titulo']);?></td></tr>
<tr><td><?php echo "Noticia enviada por: ".$rowNot['email']." Fecha: ".$rowNot['f_alta']; ?></td></tr>
<tr><td><?php echo Recortar(nl2br(stripslashes($rowNot['texto'])),130)." <a href=\"mas.php?not_id=".$rowNot['not_ID']."\" target=\"_blank\">Más...</a>"; ?></td></tr>
</table>
<?php
}
//Incluimos la barra de navegación
echo"<p>".$_pagi_navegacion."</p>";
?>
Noticia 1
Noticia 2
Noticia 3
Noticia 4..... y asi sucesivamente.
Es decir lo que necesito es que cada noticia se muestre en otra fila pero no se como he de hacerlo
![lloron](http://static.forosdelweb.com/fdwtheme/images/smilies/chillando.png)