prova così:
Codice PHP:
<table border="1">
<tr>
<?php
do {
?>
<td><table width="116" border="1">
<tr>
<td width="106"><?php echo $row_dati1['nome']; ?></td>
</tr>
<tr>
<td><?php echo $row_dati1['telefono']; ?></td>
</tr>
<tr>
<td><?php echo ......; ?></td>
</tr>
</table></td>
<?php
$row_dati1 = mysql_fetch_assoc($dati1);
if (!isset($nested_dati1)) {
$nested_dati1= 1;
}
if (isset($row_dati1) && is_array($row_dati1) && $nested_dati1++%2==0) {
echo "</tr><tr>";
}
} while ($row_dati1);
?>
</tr>
</table>