Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/05/2009, 08:25
Avatar de rompeguesos
rompeguesos
 
Fecha de Ingreso: marzo-2009
Mensajes: 692
Antigüedad: 15 años, 1 mes
Puntos: 8
Respuesta: No se como hacer para que se muestre en diferentes filas la consulta

:D Muchas gracias +1 para By_George. El codigo a quedao asi por si alguna vez le hace falta a alguien:

Código PHP:
<table id="listanoticias"> 
<?php 
while($rowNot mysql_fetch_array($_pagi_result)){ 
?> 
<tr><td rowspan="4"><?php echo "<img src=\"imagenes/".$rowNot['imagen']."\" width=\"100\" height=\"70\" 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>
<?php 

?>
</table>
</div>