questo però è semplice html, neanche php.

Quello che devi fare è ripetere tanti td quanti sono i risultati no?

tipo:

codice:
<table>
<tr>
<?php
$result = mysql_query($query_estrazione);
if($result) {
  while($row = mysql_fetch_array($result)) {
     echo "<td>";
     echo "<table>";
     echo "<tr>";
     echo "<td>".$row['dato1']."</td>";
     echo "</tr>";
     echo "<tr>";
     echo "<td>".$row['dato2']."</td>";
     echo "</tr>";
     echo "<tr>";
     echo "<td>".$row['dato3']."</td>";
     echo "</tr>";
     echo "</table>";
     echo "</td>";
  }
}
?>
</tr>
</table>
ciao e studia