May 16th, 2010, 2:56 PM
Hi guys,
Here's the issue: I can submit a fomr, the data ends up in the Db (nice), but the page does not redirect to the confirmation page. I've disabled all the emails I had set up, and the page only refreshes down to the php block below, and no further, and doesn't go on to the confirmation page.[/code]
I'm so impressed with this product, you have no idea. Other than this, o'course.
Here's the issue: I can submit a fomr, the data ends up in the Db (nice), but the page does not redirect to the confirmation page. I've disabled all the emails I had set up, and the page only refreshes down to the php block below, and no further, and doesn't go on to the confirmation page.[/code]
I'm so impressed with this product, you have no idea. Other than this, o'course.
Code:
<?php
require_once("/home/anton/modernprojects.com/formtools/global/api/api.php");
$fields = ft_api_init_form_page(1);
$params = array(
"submit_button" => "Register",
"next_page" => "registrationconfirmation.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
?>