<form>
<cfloop from="1" to="#StructCount(lines)#" index="counting">
<input type="text" size="55"
name="title<cfoutput>#counting#</cfoutput>"
value="<cfoutput>#lines[counting]['title']#</cfoutput>">
</cfloop>
</form>
when I dump that page it give me form fields with the values from 1 to 10
title1
title2
title3
......
title10
how I can output the result of those form variables dynamically
<cfloop from="1" to="#Evaluate(StructCount(form))#" index="x">
<cfset OTitle = "title#x#">
<cfoutput>#OTitle#</cfoutput>
</cfloop>
that give me "title1" output i need the value of title1
if I directly output title1 it displays the value.
thanks alot
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

