I want to place a PHP href link to a PDF on a form "thank you" page after the form has been submitted.
My logic is to have the href link to appear only if the form has been submitted so a user cannot bookmark the page.
OR
Make the PHP page only be seen from the submit page and to hide it if someone goes there by a bookmark. Can it be a dynamic PHP address that can't be bookmarked?
Here is my HTML code to be converted:
HTML Code:
<p>Thank you very much for your submission.<br />
A Foo representative will contact you shortly.</p>
<p>Here is your <a href="#">link</a> for the whitepaper download </p>
-- Dan