Jul 27th, 2011, 3:29 PM
Hi Joe,
Thanks a lot for your reply. I have had a look through documentation again and found this, which refers to resetting form sessions to allow for resubmission:
http://docs.formtools.org/api/?page=ft_a...m_sessions
I already had this PHP in my 'Thank you' page:
So that seems to be OK.Thanks a lot for your reply. I have had a look through documentation again and found this, which refers to resetting form sessions to allow for resubmission:
http://docs.formtools.org/api/?page=ft_a...m_sessions
I already had this PHP in my 'Thank you' page:
PHP Code:
<?php
$curr_folder = dirname(__FILE__);
require_once("$curr_folder/includes/library.php");
$fields = ft_api_init_form_page($pp["form_id"]);
ft_api_clear_form_sessions();
?>The submission ID gets sent to PayPal in the 'custom' variable to uniquely identify the transaction at that end:
PHP Code:
<?php
$fields["custom"] = $fields["form_tools_submission_id"];
