Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/01/2010, 05:48
Avatar de luis010182
luis010182
 
Fecha de Ingreso: julio-2009
Ubicación: Argentina - Capital Federal
Mensajes: 382
Antigüedad: 14 años, 9 meses
Puntos: 27
Respuesta: Ayuda mostranto productos...!!

Esto deberia servirte

Código PHP:
echo "<table><tr>";
$i=1;
while ($mos=mysql_fetch_array($query)){  
if ( $i==2 ){ echo '</tr><tr>' ; $i=0; }
echo "<td>";
?>la tabla con tu producto<?
echo "</td>";

$i++;

}

echo 
"</tr></table>";