Whatever message this page gives is out now! Go check it out!
<cfbreak> |
<cfloop index="i" from="1" to="10">
<cfoutput>#i#</cfoutput>
<cfif i GE 5>
<cfbreak>
</cfif>
</cfloop><cfscript>
for (i=1; i <= 10; i++){
writeOutput(i)
if (i >= 5){
break
}
}
</cfscript>