homenet
Senior Member
- Jan 5, 2009
- 982
- 504
Ok this is the first time i've suggested an idea, and im going over the theory of it in my head and im pretty sure its going to work, im going to implement it tonight, it will take a bit of setup (half hour or so?) and requires a bit of php/mysql knowledge but ill be glad to help people out if you think its gonna work, ok so here we go:
This is basically going to be an email/zip submit using the cakeslice technique. The cakeslice html page will basically allow you to select an area of a CPA offer where the input email is and the submit button so you just cut out that area and can copy and paste it into your own page. If you dont know about it check it out here:
Now were going to be using this to pick out the input name/email address section and the submit button from a CPA offer, you might have to pick out two seperate areas depending on how the CPA landing page is laid out.
Next, we need to quickly setup a WHITEHAT page for our offer, so stick a banner for the offer, some related text blar blar blar, make it look pretty so if your AM checks your page then it all looks legit.
We are ALSO going to setup a seperate part of the page where you are just displaying your input name/email and submit button from the CPA offer in your IFRAME (the code we got from cakeslice above)
This is where it gets a bit more complicated, what we need to do is setup a database with 1 table (call it whatever) and 1 column, again call it whatever! The way this method will work is we are going to be email responding to people from craiglist ads a url link to our IFRAME'ed offer, we are going to setup a querystring for each person we email and it MUST be different each time, now this can be automated but ill leave that to you for now.
Next populate your table with 100 records, they can either be random numbers or incrementing, incrementing is probably easier to keep track of when emailing
So basically:
1: we get 100 responses to our ad for whatever, we email person 1 with http:// yourlinkhere /index.php?id=1
we email person 2 with http:// yourlinkhere /index.php?id=2
we email person 3 with http:// yourlinkhere /index.php?id=3
and so on, and so forth.
In our index page, we check the querystring, we do a mysql lookup to check that number exists in the table. if it DOESNT, we load the html for our WHITEHAT page, if it DOES, we load the html for our blackhat IFRAME offer. as soon as the querystring is read we do a mysql statement to DELETE that record from the database so it can never be loaded again.
so why are we doing this? so that when the AM checks your referer he sees the url with the querystring, BUT, if he visits that page he will be shown the WHITEHAT page because the record has been deleted from the database upon loading the first time.
Hope this makese sense, its quite long winded but i think the theory behind it works, its basically taking the cakeslice method without having to mess about with double meta refreshes and also keeps your tracks covered with your AM!
Any questions please ask
p.s the idea here is that when the people receive your email they will click the link, and it will load the iframe offer.. at this point your need to give them incentive to fill out their email and click submit but there are already hundreds of ideas on this forum to do that
This is basically going to be an email/zip submit using the cakeslice technique. The cakeslice html page will basically allow you to select an area of a CPA offer where the input email is and the submit button so you just cut out that area and can copy and paste it into your own page. If you dont know about it check it out here:
Now were going to be using this to pick out the input name/email address section and the submit button from a CPA offer, you might have to pick out two seperate areas depending on how the CPA landing page is laid out.
Next, we need to quickly setup a WHITEHAT page for our offer, so stick a banner for the offer, some related text blar blar blar, make it look pretty so if your AM checks your page then it all looks legit.
We are ALSO going to setup a seperate part of the page where you are just displaying your input name/email and submit button from the CPA offer in your IFRAME (the code we got from cakeslice above)
This is where it gets a bit more complicated, what we need to do is setup a database with 1 table (call it whatever) and 1 column, again call it whatever! The way this method will work is we are going to be email responding to people from craiglist ads a url link to our IFRAME'ed offer, we are going to setup a querystring for each person we email and it MUST be different each time, now this can be automated but ill leave that to you for now.
Next populate your table with 100 records, they can either be random numbers or incrementing, incrementing is probably easier to keep track of when emailing
So basically:
1: we get 100 responses to our ad for whatever, we email person 1 with http:// yourlinkhere /index.php?id=1
we email person 2 with http:// yourlinkhere /index.php?id=2
we email person 3 with http:// yourlinkhere /index.php?id=3
and so on, and so forth.
In our index page, we check the querystring, we do a mysql lookup to check that number exists in the table. if it DOESNT, we load the html for our WHITEHAT page, if it DOES, we load the html for our blackhat IFRAME offer. as soon as the querystring is read we do a mysql statement to DELETE that record from the database so it can never be loaded again.
so why are we doing this? so that when the AM checks your referer he sees the url with the querystring, BUT, if he visits that page he will be shown the WHITEHAT page because the record has been deleted from the database upon loading the first time.
Hope this makese sense, its quite long winded but i think the theory behind it works, its basically taking the cakeslice method without having to mess about with double meta refreshes and also keeps your tracks covered with your AM!
Any questions please ask
p.s the idea here is that when the people receive your email they will click the link, and it will load the iframe offer.. at this point your need to give them incentive to fill out their email and click submit but there are already hundreds of ideas on this forum to do that