How do I display dynamic data horizontally. I want to display a talbe 4 cells across and 7 cells down.
This displays them in cells vertically.
Code:
<table width="500" height="33" cellpadding="2" >
<?php do { ?>
<tr> <td> <a href="bags.php?bag_brand_id=<?php echo $row_Bags['bag_brand_id']; ?>"><?php echo $row_Bags['bag_brand_title']; ?></a>
</td>
<?php } while ($row_Bags = mysql_fetch_assoc($Bags)); ?> </tr>
</table>