I have a string
strtmp=jh@netexplora.com,jp@netexplora.com,jhm@net.com
How I can separate values??
example:
var1:jh@netexplora.com
var2:jp@netexplora.com
var3:jhm@net.com
I Thought this:
<cfloop index="i" from="1" to="#len(strtmp)#" step="1">
<cfoutput>#strtmp#</cfoutput>
</cfloop>
but, I know what this does not work!!
thanks