Does CFLOOP:index add 1 to the index when the loop is completed??
For ex:
<cfoutput><cfloop index="idx" from="1" to="4">
Index = #idx#<br /></cfloop>
Index now = #idx#</cfoutput>
Will output:
Index = 1
Index = 2
Index = 3
Index = 4
Index now = 5
_