Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfquery name="qryData">
your query
</cfquery>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<cfoutput query="qryData">
<td>#qryData.FieldName#</td>
<cfif NOT (qryData.CurrentRow MOD 6)>
</tr>
<cfif qryData.CurrentRow NEQ qryData.RecordCount>
<tr>
</cfif>
</cfif>
</cfoutput>
</table>