The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Undefined array key "avatartype" - Line: 783 - File: global.php PHP 8.1.31 (Linux)
|
![]() |
Passing data to confirmation page - Printable Version +- Form Tools (https://forums.formtools.org) +-- Forum: Form Tools (https://forums.formtools.org/forumdisplay.php?fid=1) +--- Forum: General Discussion (https://forums.formtools.org/forumdisplay.php?fid=5) +--- Thread: Passing data to confirmation page (/showthread.php?tid=628) |
Passing data to confirmation page - filch - Apr 2nd, 2010 How does one get data to use on the confirmation page when using the API. I am particularly interested on the submission ID and one or two specific form fields. Dave RE: Passing data to confirmation page - Ben - Apr 4th, 2010 Hi Filch, Since you're using the API, you already have all the form information available on the confirmation page - right up until the point where sessions are emptied. So, assuming the PHP at the top of your page looks something like this... PHP Code: <?php You can then use the $fields variable to extract whatever information you want, like $fields["submission_id"]. Hope this helps - Ben RE: Passing data to confirmation page - filch - Apr 4th, 2010 That should indeed help. Thanks Ben. (Apr 4th, 2010, 11:15 AM)Ben Wrote: Hi Filch, |