cfloop within a loop code example
Example: coldfusion loop array
<cfset myList = 'Jeff,John,Steve,Julliane'>
<cfloop list="#myList#" index="item">
#item#<br>
</cfloop>
<cfset myList = 'Jeff,John,Steve,Julliane'>
<cfloop list="#myList#" index="item">
#item#<br>
</cfloop>