Dynamic results - 2 column table?
I have a dynamic table:
<table width="500" border="1" cellpadding="10" cellspacing="10">
<?php do { ?>
<tr>
<td><p><?php echo $row_babiesrs['name']; ?></p></td>
</tr>
<?php } while ($row_babiesrs = mysql_fetch_assoc($babiesrs)); ?>
</table>
The results display down the page in a one column table i.e.
1
2
3
4
5
6
Can anyone tell me if there is a way using dreamweaver to get the results to display as a 2 column table i.e.
1 2
3 4
5 6
TIA