Jul 23rd, 2011, 9:08 PM
Ben,
Thanks for helping me out and for formtools! I am still having issues - when I did the print_r, I still got nothing. I then replaced the submission_id with form_tools_submission_id and I get a 406 error, which means that the submission ID parameter is invalid. Please help! I can give you to logins if you would like to see it...
Thanks for helping me out and for formtools! I am still having issues - when I did the print_r, I still got nothing. I then replaced the submission_id with form_tools_submission_id and I get a 406 error, which means that the submission ID parameter is invalid. Please help! I can give you to logins if you would like to see it...
(Jul 23rd, 2011, 2:53 PM)Ben Wrote: One thing that sticks out is this line:
PHP Code:if (isset($fields["submission_id"]) && isset($fields["unique_key"]))
I think you'll need to change that to:
PHP Code:if (isset($fields["form_tools_submission_id"]) && isset($fields["unique_key"]))
You may need to do other tweaks too, but I'd start there. Also, if you run into more trouble, do a print_r($fields); on the receipt page to find out exactly what key-value pairs you have at your disposal.
- Ben