It would be better written like


<!--- Create hidden form fields for the Form scope --->
<cfoutput>
<cfloop collection="#form#" item="field" >
<input type="hidden" name="#variables.field#"
value="#form[variables.field]#">
</cfloop>
</cfoutput>

Taco Fleur
Blog  <http://www.tacofleur.com/index/blog/>
http://www.tacofleur.com/index/blog/
Methodology http://www.tacofleur.com/index/methodology/
0421 851 786
Tell me and I will forget
Show me and I will remember
Teach me and I will learn

-----Original Message-----
From: Andrew Spear [mailto:[EMAIL PROTECTED]
Sent: Thursday, 29 January 2004 8:37 AM
To: CF-Talk
Subject: Re:How to Pass Varibles on Multipage Form?

Try something like this...

<!--- Create hidden form fields for the Form scope --->
<cfloop collection="#form#" item="ii" >
    <cfoutput><input type="hidden" name="#ii#"
value="#Evaluate(ii)#"></cfoutput>
</cfloop>
  _____
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to