On Form1 I have Data to Session and Redirect as last 2 events "On Submit"
On Form2 I have "Session to Data" on the "On Load"
When I do a print_r2($data) on Form2 (On Load) I'm seeing no variables display from Form1.
What am I missing?
On Form2 I have "Session to Data" on the "On Load"
When I do a print_r2($data) on Form2 (On Load) I'm seeing no variables display from Form1.
What am I missing?
Yes, print_r wasnt my issue🙂
How do I print the session variable on the 2nd form?
How do I print the session variable on the 2nd form?
Hi jhdesing,
With print_r2($form->data); in a Custom Code action after the 'Session to Data' action.
Bob
With print_r2($form->data); in a Custom Code action after the 'Session to Data' action.
Bob
Bob
Forget the Print_R.
How do I show a field value submitted on Form1 to show on Form2.
Forget the Print_R.
How do I show a field value submitted on Form1 to show on Form2.
Hi J,
You should use:
The data is stored under $form->data but not $data like what you have now.
Using a "debugger" will show this as well.
Regards,
Max
You should use:
print_r2($form->data);
The data is stored under $form->data but not $data like what you have now.
Using a "debugger" will show this as well.
Regards,
Max
Max, thanks for replying.
The issue is not print_r
The issue is getting field value from Form1 to show on Form2
The issue is not print_r
The issue is getting field value from Form1 to show on Form2
well, ok, but the print_r2 is showing the field value in the data array or not ?
if its then you can use {field_name} in the form code or in a thanks message action.
Regards,
Max
if its then you can use {field_name} in the form code or in a thanks message action.
Regards,
Max
Max,
Not showing any data when I do print r on secondary form.
I want to use the country dropdown value (from Form1) as a Heading on Form2.
Not showing any data when I do print r on secondary form.
I want to use the country dropdown value (from Form1) as a Heading on Form2.
Hi jhdesign,
Please check my reply in your other thread on this question.
Bob
Please check my reply in your other thread on this question.
Bob
This topic is locked and no more replies can be posted.