I just lauched the first form using FT2, and realised submission id numbers are not continuous
i am very worried of missed submissions, here is a detail of the latest received submissions, nothing has been deleted or changed in the admin side
i have verified that i am showing all the submissions in my view filters
any ideas ?
if i look at the mysql database, these entries exist, everything but the submission id is blank, and the submissions not finalized
btw my form uses rsv to make some fields mandatory
here is my code on the form page
and the thanks page
very strange.... any ideas ?
could it be that the database entry is sometimes created just by loading the page w/o submitting the form ?
thanks
alex
i am very worried of missed submissions, here is a detail of the latest received submissions, nothing has been deleted or changed in the admin side
i have verified that i am showing all the submissions in my view filters
any ideas ?
if i look at the mysql database, these entries exist, everything but the submission id is blank, and the submissions not finalized
btw my form uses rsv to make some fields mandatory
here is my code on the form page
PHP Code:
<?php
require_once("/api.php");
$fields = ft_api_init_form_page(1);
$params = array(
"submit_button" => "continue_button",
"next_page" => "new_center_thanks.php",
"form_data" => $_POST,
"finalize" => true
);
ft_api_process_form($params);
?>
and the thanks page
PHP Code:
<?php
require_once("/api/api.php");
$fields = ft_api_init_form_page();
ft_api_clear_form_sessions();
?>
very strange.... any ideas ?
could it be that the database entry is sometimes created just by loading the page w/o submitting the form ?
thanks
alex