Feb 6th, 2010, 1:16 PM
Hey pieman,
Ah! Any time the page just appears to refresh & nothing happens it generally means that you haven't not passing along the submit button's name attribute to the ft_api_process_form() function.
In your form, find for the name="" attribute of your submit button. If it doesn't have one, add it and give it a value like name="mysubmit".
Then, at the top of your form, check that the "submit_button" parameter contains that same value:
Hope this helps!
- Ben
Ah! Any time the page just appears to refresh & nothing happens it generally means that you haven't not passing along the submit button's name attribute to the ft_api_process_form() function.
In your form, find for the name="" attribute of your submit button. If it doesn't have one, add it and give it a value like name="mysubmit".
Then, at the top of your form, check that the "submit_button" parameter contains that same value:
PHP Code:
$params = array(
"submit_button" => "mysubmit",
"next_page" => "thanks.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
Hope this helps!
- Ben