hello everyone nice to meet you all. i am trying my hardest to find a script that allows people to enter five bona fied email addreses and then click the submit button which takes them to a download page for a free ebook. Could anyone point me in the right direction. thanks in advance
barry
how to write an email script that goes to download page?
Moderator: General Moderators
-
bazmanblue
- Forum Newbie
- Posts: 1
- Joined: Thu Dec 07, 2006 5:47 am
You can write something like that (if I understand what you want):
Just remember not to echo/print anything to the browser before and after you send the header (header()).
Code: Select all
<?php
$email_address = $_GET['email'];
// Do what you need to do with the email...
header("Location: http://www.ebook.com/?igUTDbKb");
exit();
?>