Jul 23rd, 2011, 2:53 PM
Hi cytegi,
Ah... I think the problem due to the slightly different way in which the API stores the submission info and how the submission info is passed via the query string for POST forms. That tutorial is for post forms, so even though most of it holds true for the API, you need to make a small tweak.
One thing that sticks out is this line:
Ah... I think the problem due to the slightly different way in which the API stores the submission info and how the submission info is passed via the query string for POST forms. That tutorial is for post forms, so even though most of it holds true for the API, you need to make a small tweak.
One thing that sticks out is this line:
PHP Code:
<?php
if (isset($fields["submission_id"]) && isset($fields["unique_key"]))
I think you'll need to change that to:
PHP Code:
<?php
if (isset($fields["form_tools_submission_id"]) && isset($fields["unique_key"]))

