Lo fai nel while con una tabella

Codice PHP:
<table>
<?php while ($row=mysql_fetch_array($res)) : ?>
  <tr>
    <td><?php echo $row['data']; ?></td>
  </tr>
<?php endwhile; ?>
</table>