Ver Mensaje Individual
  #6 (permalink)  
Antiguo 05/04/2009, 18:30
smpptelecom
 
Fecha de Ingreso: marzo-2009
Mensajes: 5
Antigüedad: 15 años, 1 mes
Puntos: 0
Respuesta: Crear una fila por cada producto

Buenas noches,

Prueba de esta forma no deberias tener problemas

Código PHP:
echo "<table width='200' height='100' border='0'>";
    
$rs mysql_query($ssql,$link); 
    while (
$row mysql_fetch_array($rsMYSQL_ASSOC)){
       echo 
"<tr>";
            echo 
"<td>".$row['producto']."</td>";         
            echo 
"<td>".$row['precio']."</td>";           
            echo 
"<td>".$row['descripcion']."</td>";
            echo 
"<td><img border='0' widht='100' height='75' src='images/".$row['fotos']."'></td>";
            echo 
"<td>".$row['categoria']."</td>";
           echo 
"</tr>";
          } 
//FIN DEL WHILE
    
echo "</table>"
Espero te sirva