22/04/2012, 14:46
|
| | Fecha de Ingreso: septiembre-2010
Mensajes: 53
Antigüedad: 14 años, 2 meses Puntos: 4 | |
Respuesta: Mostrar un array dividiendolo en varias partes
Código PHP:
Ver original<?php // Connecto a db // REcolecto los datos ?> <div style="float: left; background-color: blue; height: 200px; width: 150px; overflow:auto;"> <?php //genero el array y hago un loop { Print "<div class='cuadrado'>"; Print "<b> ".$info['dato1'] . "</b><br/><br/>"; Print "<b> ".$info['dato2'] . "</b><br/><br/>"; Print "<b> ".$info['dato3'] . "</b><br/><br/>"; Print "</div>"; } ?> </div>
|