I have this little snippet of code and I was wondering what exactly to write instead of the bolded red text. I don't have much knowledge when it comes to manipulating dates.
QUOTE
<cfloop query="loopquery">
<cfif date of day 7 days away gte alertdate>
<li><b>#alertinfo# - Due #dateformat(alertdate, 'MMMM DD YYYY')#</b></li>
<cfelse>
<li>#alertinfo# - Due #dateformat(alertdate, 'MMMM DD YYYY')#</li>
</cfif>
</cfloop>
<cfif date of day 7 days away gte alertdate>
<li><b>#alertinfo# - Due #dateformat(alertdate, 'MMMM DD YYYY')#</b></li>
<cfelse>
<li>#alertinfo# - Due #dateformat(alertdate, 'MMMM DD YYYY')#</li>
</cfif>
</cfloop>
