Aug 21st, 2011, 3:53 PM
Hi Wout,
I don't know about the "NULL" thing - all submissions in the database will have a unique submission ID (it's an auto-increment column, so NULL isn't possible).
But yes, with multi-page forms you'll see the number erratically increase. This is because not everyone will complete the form, but *everyone* that arrives at the form will have a record created in the database. Only when they actually finish putting through the submission will the record appear in the Form Tools admin - because at that point, the submission has been finalized (i.e. told that it's now complete).
So in fact, your database table will eventually fill up with a lot of old, incompleted unfinalized submissions. To clear those out, see this function:
http://docs.formtools.org/api/?page=ft_a...ubmissions
All the best -
Ben
I don't know about the "NULL" thing - all submissions in the database will have a unique submission ID (it's an auto-increment column, so NULL isn't possible).
But yes, with multi-page forms you'll see the number erratically increase. This is because not everyone will complete the form, but *everyone* that arrives at the form will have a record created in the database. Only when they actually finish putting through the submission will the record appear in the Form Tools admin - because at that point, the submission has been finalized (i.e. told that it's now complete).
So in fact, your database table will eventually fill up with a lot of old, incompleted unfinalized submissions. To clear those out, see this function:
http://docs.formtools.org/api/?page=ft_a...ubmissions
All the best -
Ben