
June 13th, 2003, 12:29 PM
|
|
Junior Member
|
|
Join Date: Jun 2003
Posts: 4

Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
output 1 column into separate html tables
HELP. I am new to CF and I am stumped!!
I have only one column in a database that I need to "divide", preferably in half, but this will not be possible if I have an odd number of records. I want to output 1/2 of column 1 in its own html table, and I'd like to output the other half of column 1 in its own html table, on separate parts of the page. These HTML tables will be independent of each other because there will be information on the web page in between these two html tables.
Do I need two queries, instead of one??
Therefore it would be something like this:
<td>
<table><!---1/2 of column 1 on left side of page--->
A
B
C
</table>
</td>
<td>
<table>
<!---nondatabase information--->
</table>
</td>
<td>
<table>
<!---1/2, or the remainder of column 1 on right side of html page--->
D
E
F
G
</table>
</td>
PLease, anyone, can you help?
THANKS IN ADVANCE!
|