Scusate se insisto ma non riesco proprio a risolvere il mio problema...
devo fare una cosa del genereCodice PHP:
<?PHP
$count=1;
echo '<table border="0">';
while ($row_genere = mysql_fetch_assoc($genere))
{
if (($count % 3) ==1) echo '<tr >';
echo '<td align="center">'.'
[img]'.$row_genere['img'].'[/img]</a>'.
'</td>';
if (($count % 3) ==0) echo '</tr>';
if (($count % 3) ==1) echo '<tr >';
echo '<td align="center">'.$row_genere['genere'].'</td>';
if (($count % 3) ==0) echo '</tr>';
$count++;
}
if (($count % 3) !=0) echo '</tr>';
echo '</table>';
?>
</div>
![]()