CFtable - How to build a HTML table in ColdFusion

cftable - build a table in coldfusion (HTML Table)

cftableHTMLTable.cfm


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cftable tag example: how to build a table in coldfusion (HTML Table)</title>
</head>

<body>
<h2 style="color:Crimson">cftable Tag Example: HTML Table</h2>

<cfquery name="qAuthors" datasource="cfbookclub">
 SELECT AuthorID, FirstName, LastName FROM AUTHORS
</cfquery>

<cftable 
 query="qAuthors" 
    border="yes" 
    maxrows="8" 
    startrow="1" 
    colspacing="1" 
    colheaders="yes"
    htmltable="yes" 
    headerlines="1"
    >
 <cfcol header="Author ID" align="left" text="#AuthorID#">
 <cfcol header="First Name" align="left" text="#FirstName#">
 <cfcol header="Last Name" align="left" text="#LastName#">
</cftable>
</body>
</html>





More ColdFusion examples