i have this table..
i need to align that row with "Players Registered" goes over the whole table...and column with numbers does not spread like that with row which is upon it...
CODE
<table border=1 bordercolor=red align=right>
<td>Players Registered</td>
<tr><td>
<?php
$osel = mysql_query("select * from members");
while ($online = mysql_fetch_array($osel))
{
?><tr><?php
$s=$online['username'];
$id=$online['id'];
$i++;
?><td><?php
echo $online['id'];?></td>
<?php
?>
<td>
<?php echo $s;?></td>
<?php
?></tr><?php
}?>
</td></tr>
</table>
<td>Players Registered</td>
<tr><td>
<?php
$osel = mysql_query("select * from members");
while ($online = mysql_fetch_array($osel))
{
?><tr><?php
$s=$online['username'];
$id=$online['id'];
$i++;
?><td><?php
echo $online['id'];?></td>
<?php
?>
<td>
<?php echo $s;?></td>
<?php
?></tr><?php
}?>
</td></tr>
</table>
SOLVED!
CODE
<TH colspan="2">Players Registered</TH>

