Mar 16th, 2013, 9:43 AM
I've tried going through the forum search results to see if this was already addressed but my search resulted in many pages that didn't seem to answer my question.
My form works and puts data in the database, and successfully redirects to the thank you page.
However, I'm trying to : Displaying data on POST form receipt pages
http://docs.formtools.org/tutorials/post...page=index
I've made sure all the prerequisites have been put in place.
I'm stuck on step 1. of this tutorial
As the tutorial suggest to test, I've checked the "Pass on" for ID, saved that, and have submitted my form (after having previously loading the page to clear sessions). Nothing is being passed along in the URL query string after a fresh submission.
Can't figure out how to troubleshoot further. Any ideas?
I have this code in my form
And this is in my "formthanks" page:
Thanks
My form works and puts data in the database, and successfully redirects to the thank you page.
However, I'm trying to : Displaying data on POST form receipt pages
http://docs.formtools.org/tutorials/post...page=index
I've made sure all the prerequisites have been put in place.
I'm stuck on step 1. of this tutorial
As the tutorial suggest to test, I've checked the "Pass on" for ID, saved that, and have submitted my form (after having previously loading the page to clear sessions). Nothing is being passed along in the URL query string after a fresh submission.
Can't figure out how to troubleshoot further. Any ideas?
I have this code in my form
Code:
<?php
require_once("formtools/global/api/api.php");
$fields = ft_api_init_form_page(3);
$params = array(
"submit_button" => "submit",
"next_page" => "formthanks.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
?>
And this is in my "formthanks" page:
Code:
<?php
require_once("formtools/global/api/api.php");
$fields = ft_api_init_form_page();
ft_api_clear_form_sessions();
?>
Thanks