hwolfpack6
BANNED
- Dec 11, 2008
- 646
- 178
There are almost too many of these, and it may not even be worth it to post this, because all it takes is a little brainstorming. That is why I've combined this method with a quick lesson on making your own spins. Hopefully it can help you out a little.
First, let's start with the idea:
CL Idea
So first - let's find something to give away? Hmm...How about a 36'' LCD TV? People love free electronics, so let's go with this LCD TV.
Next - you are going to need an email submit CPA offer. I'm using an offer for Mike Phelps. All that matters is that all you have to do is enter in an email and click submit, got it?
**As an extra note, I like the email box and submit button to be on a solid background, so I can use that color as the background for the rest of the page and make it feel more realistic.
You are going to need some sort of free hosting. I use 000webhost.com but it I suppose it doesn't really matter. Don't bother buying a TLD, because it'll make this feel less real.
So first we have to make the web page.
You can basically use what I have - but change it up slightly, you know?
OK, let me break this down for you as best as I can. The main part of this you will see is a table which allows the person to type their entry in (which we don't give a f*** about; those 2 sentences aren't getting sent ANYWHERE!)
Then, in the row below that is an iFrame with the email box and email submit.
I probably am not the best person to describe how these things work. Try searching Google, the forum, or play around with the CSS (outteriframe and innerframe).
Place your domain name in the iframe src and leave the /dmr1.php part alone. That's going to be our double meta refresh. Save this as "index.php".
Great - on to the DMR's...we're already almost done with the web page.
Copy this into a different notepad file:
Again, leave the /dmr2.php alone here and save this as "dmr1.php"
Open another notepad file and paste this in:
Fill in your email submit after the url= part and save as "dmr2.php".
Upload index.php, dmr1.php, dmr2.php to your web server. Our page is done!
Here comes the Craigslist-happy-fun-time!!!! Oh man I'm so excited!
OK - so by now you are probably twitching out of excitement to post your craigl-- I mean to make money.
Post something along the lines of this in your Ad:
Feel free to change that part up a little, make the message better or title more exciting. I don't really care - just get people to email you.
When they email you - email them back something like this. This is what I used, since it was peak hour in Denver (6 PM), so most people would be online there, but I was too lazy to make a new gmail account.
Notice how I make this more convincing - I'm moving back to Boston (because my email has to do with my favorite Boston sports teams), and my name is "Michael McCullough"...now my real name is Michael, but my last name isn't McCullough, but I sound like I'm an Irishman who guzzles down fish and chips in the pubs by Fenway Park in Boston. If your city you are posting in is known for Latinos, use a latino name! It's these little details that make your email seem all that more convincing.
And we're ready. Here's what my final web page looked like.
Can you tell where the f*** my "offer" starts? Nope - because the background color of the offer and of the page are exactly the same. Only suspicious thing is the button (decorated; rest of the page is mad plain). PS: I find the color by taking a screenshot, pasting it in Photoshop, and clicking on the color using the eyedropper tool. Then I click on the color in the colors pallet and take the HEX color code.
Now you are ready to make some bank. Remember - this should never be used word for word, detail for detail. Post below for help. This is something you need a little HTML + CSS knowledge for, and if you don't have any - no problem. Post below and I'll help.
I will do your iFraming for $3. Just PM me about it and I'll make you your iFrame.
OK, so this idea brings me on to the 2nd part.
Blahh - I'm too lazy to think up a good Craigslist scam!
What are the steps to thinking up a good Craigslist scam, you may ask?
1. What do people need but can't afford during this recession? Well - entertainment is one of them. People love their TV's and Blackberry's and Cell Phones and Laptops, etc...Give one of these away.
2. Make the post on Craigslist for the free thing you are giving away.
3. Why are you giving it away? Here's where lying practice comes in handy, one could say. You just need to think of a good reason to give something away - make yourself believable. People are stupid - they'll believe just about anything. "We're moving and I wanted to get rid of this." // "I just got a new Blackberry - don't need this any more. Too hassled to sell it."
Copy and paste this to every person who emails you.
4. Now you can sit back. It's all about lying.
Enjoy!
First, let's start with the idea:
CL Idea
So first - let's find something to give away? Hmm...How about a 36'' LCD TV? People love free electronics, so let's go with this LCD TV.
Next - you are going to need an email submit CPA offer. I'm using an offer for Mike Phelps. All that matters is that all you have to do is enter in an email and click submit, got it?
**As an extra note, I like the email box and submit button to be on a solid background, so I can use that color as the background for the rest of the page and make it feel more realistic.
You are going to need some sort of free hosting. I use 000webhost.com but it I suppose it doesn't really matter. Don't bother buying a TLD, because it'll make this feel less real.
So first we have to make the web page.
You can basically use what I have - but change it up slightly, you know?
Code:
<html>
<head>
<title>Free TV Entrance Form</title>
<style type="text/css">
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #FFFFFF;
}
#outteriframe {
width:200px;
height:90px;
overflow:hidden;
position:relative;
margin-left: auto;
margin-right: auto;
}
#inneriframe {
position:absolute;
top:-535px;
left:-540px;
width:1280px;
height:1200px;
}
</style>
</head>
<body bgcolor="#1a2328">
<div align="center">
<h1>Entry</h1>
<p>Directions: In 2 sentences or less, say why you deserve to get the free plasma TV. Contest ends on April 4th, 2009. I will contact you by email for further directions if you are selected to win.</p><br />
<table border="1" cellpadding="1" cellspacing="0">
<tr>
<td>Why You Deserve It:</td>
<td><textarea rows="5" cols="30">2 Sentences or Less Please!</textarea></td>
</tr>
<tr>
<td><center>Email:</center></td>
<td><div id="outteriframe"><iframe src="http://yoursite.com/dmr1.php" scrolling="no" id="inneriframe"></iframe></div></td>
</tr>
</table>
</div>
</body>
</html>
OK, let me break this down for you as best as I can. The main part of this you will see is a table which allows the person to type their entry in (which we don't give a f*** about; those 2 sentences aren't getting sent ANYWHERE!)
Then, in the row below that is an iFrame with the email box and email submit.
I probably am not the best person to describe how these things work. Try searching Google, the forum, or play around with the CSS (outteriframe and innerframe).
Place your domain name in the iframe src and leave the /dmr1.php part alone. That's going to be our double meta refresh. Save this as "index.php".
Great - on to the DMR's...we're already almost done with the web page.
Copy this into a different notepad file:
Code:
<?php
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://yourdomain.com/dmr2.php\">";
?>
Again, leave the /dmr2.php alone here and save this as "dmr1.php"
Open another notepad file and paste this in:
Code:
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://emailsubmitdomainnamereferralthinghere.com/whogivesashit.html\">";
}
?>
Fill in your email submit after the url= part and save as "dmr2.php".
Upload index.php, dmr1.php, dmr2.php to your web server. Our page is done!
Here comes the Craigslist-happy-fun-time!!!! Oh man I'm so excited!
OK - so by now you are probably twitching out of excitement to post your craigl-- I mean to make money.
Post something along the lines of this in your Ad:
Code:
Title: Free 36'' LCD TV!
Message:Given to a worthy person.
Email me - [email protected] for more information.
Feel free to change that part up a little, make the message better or title more exciting. I don't really care - just get people to email you.
When they email you - email them back something like this. This is what I used, since it was peak hour in Denver (6 PM), so most people would be online there, but I was too lazy to make a new gmail account.
Code:
Hey,
So I'm holding this contest. I'm going to give away my 36'' LCD TV to the person who gives me the best reason why they deserve it. I'm moving back to my hometown outside of Boston, so I'm just getting rid of this, and I figure, why not give it to a person who deserves it?
For organization's sake, I set up this tiny webpage with free hosting. It keeps all the entries together, and nice and tidy.
http://mysite.com/ - just go there, type why you deserve it in 1 or 2 sentences and put in your email and click Submit. If I've chosen you, I'll email you to get more details. This ends on April 4th, 2009. Enter soon!
Good Luck,
Michael McCullough
Notice how I make this more convincing - I'm moving back to Boston (because my email has to do with my favorite Boston sports teams), and my name is "Michael McCullough"...now my real name is Michael, but my last name isn't McCullough, but I sound like I'm an Irishman who guzzles down fish and chips in the pubs by Fenway Park in Boston. If your city you are posting in is known for Latinos, use a latino name! It's these little details that make your email seem all that more convincing.
And we're ready. Here's what my final web page looked like.
Can you tell where the f*** my "offer" starts? Nope - because the background color of the offer and of the page are exactly the same. Only suspicious thing is the button (decorated; rest of the page is mad plain). PS: I find the color by taking a screenshot, pasting it in Photoshop, and clicking on the color using the eyedropper tool. Then I click on the color in the colors pallet and take the HEX color code.
Now you are ready to make some bank. Remember - this should never be used word for word, detail for detail. Post below for help. This is something you need a little HTML + CSS knowledge for, and if you don't have any - no problem. Post below and I'll help.
I will do your iFraming for $3. Just PM me about it and I'll make you your iFrame.
OK, so this idea brings me on to the 2nd part.
Blahh - I'm too lazy to think up a good Craigslist scam!
What are the steps to thinking up a good Craigslist scam, you may ask?
1. What do people need but can't afford during this recession? Well - entertainment is one of them. People love their TV's and Blackberry's and Cell Phones and Laptops, etc...Give one of these away.
2. Make the post on Craigslist for the free thing you are giving away.
3. Why are you giving it away? Here's where lying practice comes in handy, one could say. You just need to think of a good reason to give something away - make yourself believable. People are stupid - they'll believe just about anything. "We're moving and I wanted to get rid of this." // "I just got a new Blackberry - don't need this any more. Too hassled to sell it."
Copy and paste this to every person who emails you.
4. Now you can sit back. It's all about lying.
Enjoy!
Last edited: