Web Form Submission Rewards - Post ID...

User 1854541 Photo


Registered User
34 posts

We use our CC Webforms for a number of purposes on our site (www.pawpads.org) and LOVE IT. One thing we use it for is for our volunteer service dog trainers (who work in a couple prisons on the other side of the State) to submit "report cards" on the dogs they work with. We're thinking we want to offer the Volunteers the ability to download an MP3 as a reward for using our password protected online reporting form...so that when they "Submit" our form to us, we can redirect them to a page or place where they can choose and legally download an MP3. Any ideas? Anyone? Anyone? Buehler?
Randy Patrick
"I am only one, but I am one. I cannot do everything, but I can do something. I will not let what I cannot do interfere with what I can do. " ~ Edward Everett Hale
User 187934 Photo


Senior Advisor
20,190 posts

Do the redirect to the thank you page after form submission with the link to your mp3 page. Now put some php at the top of the mp3 page to redirect users not coming from the thankyou.html page.:)

<?php
$referer = $_SERVER['HTTP_REFERER'];
if ($referer == 'http://mysite.com/thankyou.html')
{
header('Location: http://mysite.com/mp3.html');
}
else
{
header('Location: http://mysite.com/yournotallowed.html');
}
?>
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 1854541 Photo


Registered User
34 posts

Thanks Eric!
Are you or anyone else aware of where I can find a site that has MPs's for this type of offer? I've googled, yahoo'd, and Ouijed..but can't sem to find one. I've actually been to sites that redirected you the way I'm talking about but can't remember where. Thanks!:/
Randy Patrick
"I am only one, but I am one. I cannot do everything, but I can do something. I will not let what I cannot do interfere with what I can do. " ~ Edward Everett Hale
User 187934 Photo


Senior Advisor
20,190 posts

Your going to need licensing to handle those mp3 files.;)
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.

This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
User 1854541 Photo


Registered User
34 posts

Actually..I found a site located in Belgrade, Serbia that has unlimited access to the very latest MP3's for a mere 99 cents! ;) I jest!!!!!! I joke!!!
Seriously, I have now found the Amazon.com has such a program that our organization can use.
Thanks, Eric!
Randy Patrick
"I am only one, but I am one. I cannot do everything, but I can do something. I will not let what I cannot do interfere with what I can do. " ~ Edward Everett Hale

Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.