Estoy realizando una pequeña web de bolets"setas", quisiera ver las imagenes de una base de datos en 3 columnas pero no consigo hacerlo. Alguien me podria hechar una manilla?
Este es el codigo que tengo:
<body>
<div id="apDiv2"><img src="imagenes/imagenesweb/loquieresaquilotienes3.png" width="412" height="139" /></div>
<div id="apDiv3">
<?php do { ?>
<table width="211" align="center">
<tr>
<th width="181" scope="col"><a href="detalle.php?foto_id=<?php echo $row_bolets['foto_id']; ?>"><img src="imagenes/fotosbd/peques/<?php echo $row_bolets['nombreimagen']; ?>" width="110" height="120" /></a></th>
</tr>
<tr>
<th scope="col"><?php echo $row_bolets['nombrebolet']; ?></th>
</tr>
<tr>
<th scope="col">(<?php echo $row_bolets['nombrecientifico']; ?>)</th>
</tr>
</table>
<?php } while ($row_bolets = mysql_fetch_assoc($bolets)); ?>
</div>
</body>
</html>
<?php
mysql_free_result($bolets);
?>
He empezado ahora en el mundillo este y voy muy perdido....
Mil gracias
Saludos