Ver Mensaje Individual
  #8 (permalink)  
Antiguo 06/04/2009, 08:05
matucasal
 
Fecha de Ingreso: marzo-2009
Mensajes: 168
Antigüedad: 15 años, 1 mes
Puntos: 1
Respuesta: Crear una fila por cada producto

Yo lo termine resolviendo de otra manera pero gracias. Dejo el codigo por si alguno le sirve, o por si meven algun error y se lo puede mejorar.
Código PHP:
<table width='150' height='100' border='1'>
 <?php

  
for($i=0;$row=mysql_fetch_assoc($qry);$i++){


  
?>
  <table width='656' height='100' border='1' frame="void">
  <tr>
   <td width="117"><div align="center"><?php
echo "<img width='97' height='75' border='0' align='absmiddle' widht='100' src='images/"$row['fotos']. "'>"
?>
<br>
    </div></td>
 <td width="481"><p align="center" class="Estilo1"><?php echo $row['producto']."<br>";?></p>
<p align="center"><strong><?php echo "$" .$row['precio'?></strong></p>
<p align="center"><?php echo $row['descripcion'?></p>
 <p align="center"><a href="#" class="Estilo2">Comprar ahora</a></p>


</td>
  </tr>
</table>