> I've coded the following 'by the book' but the caption and heading =
> repeats for each row.
You'll need to loop over just the row portion, not the headers:
<table>
<tr>
<th>Name</th>
<th>Rank</th>
<th>Serial Number</th>
</tr>
<cfoutput query="getpeople">
<tr>
<td>#getpeople.name#</td>
<td>#getpeople.rank#</td>
<td>#getpeople.sn#</td>
</tr>
</cfoutput>
</table>
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.