How would one limit the number of rows to appear before moving to the next? (Or is it columns I'm looking for?) In other words, if I had six results to a query and wanted to have three per line, like this:
<TABLE>
<TR>
<TD>result1</TD><TD>result2</TD><TD>result3</TD>
</TR>
<TR>
<TD>result4</TD><TD>result 5</TD><TD>result6</TD>
</TR>
</TABLE>
The way I do it now, it goes:
<TABLE>
<TR>
<TD>result1</TD><TD>result2</TD><TD>result3</TD><TD>result4</TD><TD>result5</TD><TD>result6</TD>
</TR>
</TABLE>
Get me? Is this possible?