Mar 2nd, 2009, 11:34 AM
Sure! For "direct" form types (i.e. the ones where you're just submitting the content directly to process.php), you just need to specify those fields as being passed along to the thankyou page via the query string. You can then pull them out and display them in the page. This actually works just like FT1, except I think I may have moved the "Pass On" field to a different page in the UI... (I forget, actuallly!)
To do it, just edit your form and click on the Fields tab. There, check the "Pass On" checkboxes for those fields you'd like passed along to the thankyou page.
On that page, you can refer to the values like so:
[EDIT: I just found a bug with this pass-on mechanism. It'll work for most form fields, but multi-select fields don't get passed along properly. This will be fixed in the next build].
To do it, just edit your form and click on the Fields tab. There, check the "Pass On" checkboxes for those fields you'd like passed along to the thankyou page.
On that page, you can refer to the values like so:
PHP Code:
echo $_GET["myfieldname"];
[EDIT: I just found a bug with this pass-on mechanism. It'll work for most form fields, but multi-select fields don't get passed along properly. This will be fixed in the next build].