Hi Frank, If I understand what it is you are trying to do, try this out.
<-- First Form --> <cfform name="form1" action="" method="post" enctype="multipart/form-data"> <cfinput name="f-field_01"> <cfinput name="f-field_02"> <cfinput name="f-field_03"> </cfform> <-- Second Form --> <cfform name="form2" action="" method="post" enctype="multipart/form-data"> <-- Insert previous form fields below --> <cfoutput> <input type="hidden" name="f-field_01" value="#form.f-field_01#> <input type="hidden" name="f-field_02" value="#form.f-field_02#> <input type="hidden" name="f-field_03" value="#form.f-field_03#> </cfoutput> <-- Then insert the form elements below here for the second form. --> Now when the second form page is processed, information from first form page and second form page, should process together. Leonard ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;192386516;25150098;k Archive: http://www.houseoffusion.com/groups/CF-Newbie/message.cfm/messageid:3608 Subscription: http://www.houseoffusion.com/groups/CF-Newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.15
