Ah - See if this works:
PHP Code:
<table align="center">
<tr>
<?php
// Variable to handle the number of columns
$newline = 0;
do {
?>
<td>
<table width="300" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" class="name_gradient"><?php echo $row_callhosting['feature']; ?></td>
</tr>
<tr>
<td class="lite_blue">Starting At<br />
<span class="style2"><strong><?php echo $row_callhosting['price']; ?></strong></span><br />
<a href="#" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('BuyNow','','images/buynow_over.jpg',1)"><br />
<img src="images/buynow_out.jpg" alt="Buy Now!" name="BuyNow" width="110" height="47" border="0" id="BuyNow" align="center"/></a><br />
</td>
<td class="feature_table"><span class="features">FEATURE</span><br />
Space: <?php echo $row_callhosting['space']; ?><br />
Bandwidth: <?php echo $row_callhosting['bandwidth']; ?><br />
Database(s): <?php echo $row_callhosting['db']; ?><br />
Email Accounts: <?php echo $row_callhosting['email']; ?><br />
FTP Accounts: <?php echo $row_callhosting['ftp']; ?><br />
Domains: <?php echo $row_callhosting['domains']; ?><br />
<?php echo $row_callhosting['scripts']; ?><br />
Cpanel: <?php echo $row_callhosting['cpanel']; ?>
</td>
</tr>
</table>
</td>
<?php
// Increase the number of columns displayed
$newline++;
if ($newline == "3")
{
// Start a new row and reset the $newline variable
echo ("</tr><tr>\n");
$newline = 0;
}
} while ($row_callhosting = mysql_fetch_assoc($callhosting));
// Add any additional columns if needed to fill the last row
for ($newline; $newline < 3; $newline++)
{
echo ("<td> </td>\n");
}
?>
</tr>
</table>