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>