Show first form data in the second form
I have two forms.. The first one is for name and email.. after the client click submit, we will receive an email and the second form will show up for the client to complete filling the form and then submit then we will receive another email.
The problem is :
– The first form doesn’t connected with second form
– we receive two email not connected to each other
My question is :
Is there a way that I can show the client information in the second form and also showen in the last email?
I was thinking to make it like this Logically not coding:)
First form
$query=new SmartFormsQuery(17);
save info in
var Name1, Email2;
Name1 = ('rnField87');
Email2 = ('rnField104');
Second form
put on the new form_19
var Name, Email;
Name('rnField250') = Name1('rnField87');
Email('rnField251') = Email2('rnField104');
show in textbox.rnField250= Name;
show in textbox.rnField251= Email;
I wish I could explained good what I want to do :)
