Created
June 11, 2014 03:46
-
-
Save joeydaly/30eeaa65f2402eb7194e to your computer and use it in GitHub Desktop.
cfml example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfset lstNames = "Bob,Jane,TMart" /> | |
<cfset arrNames = ListToArray(lstNames) /> | |
<cfoutput> | |
<cfset idx = 1 /> | |
<cfloop array="#arrNames#" index="name"> | |
#idx# - #name#<br /> | |
<cfset idx = idx + 1 /> | |
</cfloop> | |
</cfoutput> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment