I need a simple multi page (2 page) form.
Due to limited space, the first page will just have 2 fields - Name (input_textarea_0) and Email address (input_textarea_1) along with a submit button.
Both are being validated and then on submit I have set :
session to data - with a session key of getInTouch
Redirect to second form
On the second form I only have a captcha set up along with a submit button.
I have set the OnLoad - data to session with session key getInTouch
The On submit includes :
Session to Data - with session key getInTouch
Email to me with template :
Email comes through fine but just lists the field names instead of the data I was expecting.
As I am new to this data handling, I am sure I have missed something somewhere and probably over simplified the process!
Due to limited space, the first page will just have 2 fields - Name (input_textarea_0) and Email address (input_textarea_1) along with a submit button.
Both are being validated and then on submit I have set :
session to data - with a session key of getInTouch
Redirect to second form
On the second form I only have a captcha set up along with a submit button.
I have set the OnLoad - data to session with session key getInTouch
The On submit includes :
Session to Data - with session key getInTouch
Email to me with template :
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
Name
</td>
<td>
{input_textarea_0}
</td>
</tr>
<tr>
<td>
Email
</td>
<td>
{input_textarea_1}
</td>
</tr>
</table>
Email comes through fine but just lists the field names instead of the data I was expecting.
As I am new to this data handling, I am sure I have missed something somewhere and probably over simplified the process!