I would like to output two numbers consecutively:
- Number one
- Number two
Below is the basic code:
<cfloop index="x" from="2" to="#ListLen(stringOf200Numbers)#" >
<cfset x2 = x>
<cfoutput>
<h2>#x#</h2>
<h2>#x2#</h2>
</br>
</cfoutput>
</cfloop>
I have tried many different angles.. would love some expert assistance...