Jun 3rd, 2011, 6:38 AM
Heya,
Ah! The problem is that you're detecting for values in the query string, not the fields returned from sessions. Try changing this line:
to this:
That may help.
- Ben
Ah! The problem is that you're detecting for values in the query string, not the fields returned from sessions. Try changing this line:
Code:
if (isset($_GET["submission_id"]) && isset($_GET["unique_key"]))
to this:
Code:
if (isset($fields["form_tools_submission_id"]) && isset($fields["unique_key"]))
That may help.
- Ben