Codice PHP:<table cellpadding="4" cellspacing="4" align="center">
<tr>
<?php $count = 0;
while (/*condizione*/) { ?>
<td>IMMAGINE</td>
<?php if ($count %4 == 0) { /* modifica il 4 con il numero che vuoi */ ?>
</tr>
<tr>
<?php }
$count++;
} ?>
</tr></table>

Rispondi quotando