04-29-2011, 01:57 AM
I used this method for well over 6 months.
Make up a company, get a domain for it and hosting.
Make the company LOOK like a real, legit company.
Have a "first page landing page" where they enter their info like so -
From there they will be taken to your offer's page where every offer they complete they will "earn tickets" towards their prize of choice.
Now the o.php part stands for Offers.php
in there you put your PHP redirect code(so they can't see your affiliate links)
Send out emails, promote via FB/Twitter, any way you can possibly think of. I did small promotions because I was just lazy and busy with school. It made me $250+ per day minimum, the average was between 4 and 5 hundred
Credits to ThePayRoll
#CPABBHF
Make up a company, get a domain for it and hosting.
Make the company LOOK like a real, legit company.
Have a "first page landing page" where they enter their info like so -
Code:
<center> <table>
<tr><td>Thank you for being interested in the XYZ Promotional Giveaway</td></tr>
<tr><td>Please enter the following information so we can contact you:</td></tr></table>
<table>
<tr>
<td>First name:</td>
<td><input type="text" name="firstname" /><br /></td>
</tr>
<tr>
<td>Last name:</td>
<td><input type="text" name="firstname" /><br /></td>
</tr>
<tr>
<td>Address: </td><td><input type="text" name="firstname" /><br /></td>
</tr>
<tr>
<td>Email: </td><td><input type="text" name="firstname" /><br /></td></tr>
<tr>
<td>Phone number:</td><td><input type="text" name="firstname" /><br /></td></tr>
<tr>
<td>How you heard of the promotion:</td><td><input type="text" name="firstname" /><br/></td></tr>
</table>
<table>
<tr><td>We will <b><u>NOT</b></u> call or email you unless you win the prize!</td></tr>
<tr><td><input type="button" value="Continue" onclick="location.href='page step 2 URL'"></td></tr>
</table> </cemter>
From there they will be taken to your offer's page where every offer they complete they will "earn tickets" towards their prize of choice.
Code:
Today is:<SCRIPT language=JavaScript> var days = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var months = new Array(
"January","February","March","April","May","June","July","August","September","October","November","December");
var today = new Date();
var year = today.getYear()
if (year< 1000) year +=1900;
document.write(days[today.getDay()] + " " + " " + months[today.getMonth()] + " " + today.getDate()+ ", " + " " + year);</SCRIPT> </br>
The drawling will be held at <b>midnight</b>!</br>Please note: Some of our offer's may not work at times, Please keep trying</br>
<table><tr>
<td> <a href="http://site.com/p/o.php?id=1">Offer: 16</a> </td><td> Tickets: 12</td></tr><tr>
<td> <a href="http://site.com/p/o.php?id=2">Offer: 37</a> </td><td> Tickets: 4</td></tr><tr>
<td> <a href="http://site.com/p/o.php?id=3">Offer: 46</a> </td><td> Tickets: 14</td></tr><tr>
<td> <a href="http://site.com/p/o.php?id=4">Offer: 33</a> </td><td> Tickets: 7</td></tr><tr> <td> <a href="http://site.com/p/o.php?id=5">Offer: 34</a> </td><td> Tickets: 2</td></tr><tr>
in there you put your PHP redirect code(so they can't see your affiliate links)
Code:
<?php$id =$_GET['id'];
if ($id == "1") {$link = "http://referer.us/YOURAFFLINK";}
if ($id == "2") {$link = "http://referer.us/YOURAFFLINK";}
if ($id == "3") {$link = "http://referer.us/YOURAFFLINK";}
if ($id == "4") {$link = "http://referer.us/YOURAFFLINK";}
header('HTTP/1.1 301 Moved Permanently'); // Clean 301 header
header("Location: $link"); // Jump to the link
exit();
?>
Send out emails, promote via FB/Twitter, any way you can possibly think of. I did small promotions because I was just lazy and busy with school. It made me $250+ per day minimum, the average was between 4 and 5 hundred
Credits to ThePayRoll
#CPABBHF