So here's my code.
<table width="10%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25%"> </td>
<td> </td>
<td width="25%"> </td>
<td> </td>
<td> </td>
</tr>
<?php do { ?>
<tr>
<td width="25%"><? echo $row_schedule['away_nick'];?></td>
<td align="center">@</td>
<td width="25%"><? echo $row_schedule['home_nick'];?></td>
<td><? echo $row_schedule['away_score'];?></td>
<td><? echo $row_schedule['home_score'];?></td>
</tr>
<?php } while ($row_schedule = mysql_fetch_assoc($schedule)); ?>
</table>
What I wanna do is display the results left to right instead of vertically. It would be something like
away_team score away_team score
home_team score home_team score
etc