Try this:

<cfoutput>
        <cfloop from="1" to="7" index="i">
                <cfset variables["F_Name#i#"] = Form["L_Name" & i]>
                        #variables["F_Name#i#"]# <br />
        </cfloop>
</cfoutput>

I think that's what you're looking for.  I used variables scope simply to more 
easily use the struct notation of struct["varName"] in the output.  You could 
as easily do:


<cfset "F_Name#i#" = Form["L_Name" & i]> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319834
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to