Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/02/2012, 14:11
Avatar de repara2
repara2
 
Fecha de Ingreso: septiembre-2010
Ubicación: München
Mensajes: 2.445
Antigüedad: 14 años, 2 meses
Puntos: 331
Respuesta: Mostrar datos en una tabla horizontal y vertical

Reemplaza el for por tu while:

Código PHP:
Ver original
  1. <?php
  2. $fotos = array(1,2,3,4,5,6,7,8,9,0,11,12,13,14,15);
  3. $limite = 4;
  4.  
  5. $table = "<table>";
  6.  
  7. for($i = 1;$i<count($fotos);$i++){
  8.     if($i%$limite==1)$table .="<tr>";
  9.     $table .= "<td>{$fotos[$i]}</td>";
  10.     if($i%$limite==0)$table .="</tr>";
  11. }
  12. $table .= "</table>";
  13.  
  14. echo $table;
  15. ?>

Saludos
__________________
Fere libenter homines, id quod volunt, credunt.