I have installed FT2 and none of my test submission receive.
I read the tutorial and put this code on my index.php :
and my thanks.php :
FT says everytime I click the "Refresh Page" button "Form Tools hasn't received a successful test submission yet."
Any suggestions what could be wrong? Help is very appreciated :-)
Thanks!
I read the tutorial and put this code on my index.php :
PHP Code:
<?php
require_once("/home/inong/ads/global/api/api.php");
$fields = ft_api_init_form_page(2, "initialize");
$params = array(
"submit_button" => "mysubmit",
"next_page" => "thanks.php",
"form_data" => $_POST,
"file_data" => $_FILES,
"finalize" => true
);
ft_api_process_form($params);
?>
PHP Code:
<?php
require_once("/home/inong/ads/global/api/api.php");
$fields = ft_api_init_form_page();
ft_api_clear_form_sessions();
?>
Any suggestions what could be wrong? Help is very appreciated :-)
Thanks!