Whatever message this page gives is out now! Go check it out!
<cfif expression>
HTML and CFML tags <cfelseif expression>
HTML and CFML tags
<cfelse>
HTML and CFML tags
</cfif><cfset value = 10>
<cfif value GT 20>
<cfoutput>Greater than 10</cfoutput>
<cfelseif value EQ 8>
<cfoutput>Equal to 8</cfoutput>
<cfelse>
<cfoutput>#value#</cfoutput>
</cfif><cfscript>
value=10
if (value > 10){
writeOutput("Value is greater than 10")
}
else if(value < 10){
writeOutput("Value is less than 10")
}
else {
writeOutput("Value is 10")
}
</cfscript>