Jul 12th, 2009, 10:23 AM
Heya,
Sure, this is no problem! On the final page, you should have something like this at the top of your page:
To access any of the form field values, you can extract them from the $fields variable. For example, if your form contained "first_name" and "email" fields, you could just add this PHP to your page:
Hope this helps -
Ben
Sure, this is no problem! On the final page, you should have something like this at the top of your page:
PHP Code:
<?php
require_once("path/to/global/api/api.php");
$fields = ft_api_init_form_page();
ft_api_clear_form_sessions();
?>
To access any of the form field values, you can extract them from the $fields variable. For example, if your form contained "first_name" and "email" fields, you could just add this PHP to your page:
Code:
First Name: <?=$fields["first_name"]?><br />
Email: <?=$fields["email"]?><br />
Hope this helps -
Ben