How can I output this differently ?
I currently output my report in a table using the following :
<table width="760" border="1" bordercolor="black" cellspacing="0" cellpadding="2">
<tr bgcolor="#DCDEE0">
<td class="TitleText" align="center"><b>Month/Year</b></font></td>
<td class="TitleText" align="center"><b>Total Lots In</b></font></td>
<td class="TitleText" align="center"><b>Total Lots Out</b></font></td>
</tr>
<cfoutput query="qryGetData">
<tr>
<td class="TitleText" align="center">#month_status#</td>
<td class="TitleText" align="center">#totalLotsIn#</td>
<td class="TitleText" align="center">#totalLotsout#</td>
</tr>
</cfoutput>
</table>
The outout looks something like this :
Month/Year Total Lots In Total Lots Out
1/09 10 20
2/09 30 30
etc...
How can I change the table to make the output look something like this :
1/09 2/09 3/09
In Out In Out In Out
10 20 30 30 40 50
etc..
