Ver Mensaje Individual
  #4 (permalink)  
Antiguo 10/07/2012, 14:07
Avatar de IsaBelM
IsaBelM
Colaborador
 
Fecha de Ingreso: junio-2008
Mensajes: 5.032
Antigüedad: 15 años, 10 meses
Puntos: 1012
Respuesta: Paginar resultados PHP en columnas

en realidad es mas sencillo
Cita:
<table border="1">
<tr>

<?php
for ($i = 1; $i <= 52; $i++) {
echo "<td>" .$i. "</td>";

if ($i % 5 == 0) {
echo "</tr><tr>";
}

}
?>
</tr>
</table>
__________________
if(ViolenciaDeGénero) {alert('MUJER ASESINADA');}