ma non va comunqueCodice PHP:
<?PHP
$count=0;
echo'<table border="0">';
do{
if($count==0)
{
echo'<tr>
<td align="center">'.
'[img]'.$row_genere['img'].' [/img]'.'
'.
'<span class="Tusato">'.
$row_genere['genere'].
'</span>
</td>';}
if ($count == 2)
{ echo '</tr>'; $count=0;}
$count++;
}while($row_genere = mysql_fetch_assoc($genere));
echo'</table>';
?>