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 datasource="..." name="mq">
select datef,otherfield from MyTable
order by datef desc
</cfquery>
<cfset datex="">
<Cfloop query="mq">
<cfif month(datef) neq datex>
<br><b>#Dateformat(datef,"mmmm yyyy")#</b><br>
<cfset datex=month(datef)>
</cfif>
other field: #otherfield#<br>
</cfloop>