Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/05/2009, 08:05
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

Gracias By_George pero como tu me has dicho era para mostrarlo en columnas y yo lo necesitaba en filas, rigiendome a tu codigo he hecho esto:

Código PHP:
<?php 
while($rowNot mysql_fetch_array($_pagi_result)){ 
?> 
<tr><?php echo "<img src=\"imagenes/".$rowNot['imagen']."\" width=\"100\" height=\"70\" alt=\"Descripcion\" />"?></tr> 
 <tr><?php echo stripslashes($rowNot['titulo']);?></tr> 
 <tr><?php echo "Noticia enviada por: ".$rowNot['email']." Fecha: ".$rowNot['f_alta']; ?></tr> 
<tr><?php echo Recortar(nl2br(stripslashes($rowNot['texto'])),130)." <a href=\"mas.php?not_id=".$rowNot['not_ID']."\" target=\"_blank\">Más...</a>"?></tr> 
<?php 

?>
</table>
</div>
y me sale bien en filas pero ahora el problema es que el texto se queda debajo de la imagen y lo que me gustaria es que la imagen quedara a la izquierda del texto, se que se usa float pero en este codigo como he de hacerlo?