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.
<cfset crow=0>
<table>
<cfoutput query="query_name">
<cfset crow=1+1>
<Cfif crow eq 1><tr></cfif>
<td>#var_name#</td>
<cfif crow eq 3></tr><cfset crow=0></cfif>
</cfoutput>
<cfif crow eq 1><td colspan="2"> </td></tr>
<cfelseif crow eq 2><td> </td></tr></cfif>
</table>
<cfset crow=0>
<table>
<cfoutput query="query_name">
<cfset crow=[b]crow[/b]+1>
<Cfif crow eq 1><tr></cfif>
<td>#var_name#</td>
<cfif crow eq 3></tr><cfset crow=0></cfif>
</cfoutput>
<cfif crow eq 1><td colspan="2"> </td></tr>
<cfelseif crow eq 2><td> </td></tr></cfif>
</table>