<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>3Dolla</title>
	
	<link>http://3dolla.com</link>
	<description>Affiliate Marketing Confessional</description>
	<lastBuildDate>Tue, 15 May 2012 06:01:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/3dolla" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="3dolla" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">3dolla</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Mobile Traffic – Stop The Bleeding</title>
		<link>http://3dolla.com/mobile-traffic-stop-the-bleeding/</link>
		<comments>http://3dolla.com/mobile-traffic-stop-the-bleeding/#comments</comments>
		<pubDate>Tue, 15 May 2012 06:01:16 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Landing Pages]]></category>
		<category><![CDATA[Misc.]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=211</guid>
		<description><![CDATA[It&#8217;s a weird concept, but these days people use mobile phones least for what they were originally intended for. You know&#8230; making calls. The bulk of the time they are browsing the net or texting or playing Angry Birds or some scrabble or pictionary rip off like it&#8217;s the most badass thing since sliced bread. [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s a weird concept, but these days people use mobile phones least for what they were originally intended for. You know&#8230; making calls. The bulk of the time they are browsing the net or texting or playing Angry Birds or some scrabble or pictionary rip off like it&#8217;s the most badass thing since sliced bread.</p>
<p>This simple fact changes the entire nature of the web as we know it. Many Pay Per Sale offers use videos that cannot be played on some mobile phones, and frankly&#8230; nobody is going to sit there and watch a 10 minute sales video on their phone, it&#8217;s inconvenient. In addition, any CPL offers that have more than 3-6 fields will probably be abandoned as well, especially if they are on pages not optimized for mobile viewing.</p>
<h2>What to do?</h2>
<p>You have 3 options:</p>
<ul>
<li>Limit your ads to non-mobile viewers only</li>
<li>Run your ads to everyone and accept the bleeding (some ad networks don&#8217;t even offer platform targeting)</li>
<li>Run your ads to everyone, but redirect mobile traffic to a more reasonable funnel</li>
</ul>
<p>In the 3rd case, you have a lot of options. For instance, if you&#8217;re running a dating offer you can redirect mobile traffic to a mobile dating offer instead, pretty straightforward. You may also be able to work with the offer provider for a host and post type of arrangement and actually build a mobile optimized lander, and in most cases your payout will remain the same which is a HUGE plus since alot of mobile offers have lower payouts than their desktop counterparts.</p>
<p>If you&#8217;re promoting an offer that uses a video sales page, you can redirect mobile traffic to a squeeze page that basically says &#8220;WHOA there buddy! This video is so AWESOME you&#8217;ll want to watch it on your home computer with the speakers blasting &#8211; so enter your email and I&#8217;ll shoot you the link so you don&#8217;t miss out.&#8221; The benefits here are two-fold: You capture their email address which means you can continue to remind them about the offer and promote new offers to them, and you actually have a chance at converting from the original click instead of completely losing the lead.</p>
<h2>The Method</h2>
<p>There are a few commercially available scripts that detect mobile traffic, but free is king so I&#8217;ve been using the <a href="http://code.google.com/p/php-mobile-detect/" target="_blank">php-mobile-detect</a> class available for download from Google &#8216;s code repository. It&#8217;s a small and fast PHP class and can be used to display different content based on the platform being used (iOS, android, etc). That&#8217;s great but the best part about the class is that you can detect between traffic originating on a mobile phone vs a tablet. This is important because I actually experience a relatively high conversion rate on tablet traffic visiting desktop optimized pages. Something about the iPad makes it really fun to watch a sales video or fill out a 3 page form.</p>
<p>Once you download the php class, upload it your server and use php&#8217;s include() function on your page and instantiate the class somewhere near the top of the page:</p>
<pre>include("Mobile_Detect.php");
$detect = new Mobile_Detect();</pre>
<p>Now all you have to do is feed it some logic. Let&#8217;s say we have a text link to an offer, but want to use a different link for mobile traffic:</p>
<pre>if ($detect-&gt;isMobile()) {
    $url = 'http://example.com/mobileoffer';
}
else {
    $url = 'http://example.com/regularoffer';
}

echo '&lt;a href="' .$url. '"&gt;Meet Hot Chicks&lt;/a&gt;';</pre>
<p>Now the link will point to the mobile offer for mobile users, and the regular offer to desktop users. Pretty simple stuff, huh?</p>
<p>You can go as far as you want with this — create mobile specific landers, etc.</p>
<p>But you don&#8217;t have to limit this to landers or redirection for PPC/display stuff. Why not detect mobile traffic on your blog and display ads for mobile offers or offers that are more suitable for mobile traffic instead? How about dynamically insterting a &#8220;Click Here to Call Us!&#8221; button for your eCommerce sites or Pay Per Call landers? How about ALWAYS reverting to a squeeze page for offers that have long sales videos or software downloads so you still may get credit for that sale even if they go to their desktop to complete the offer instead?</p>
<p>Every little bit helps, and when you stop the bleeding it will have a positive effect on your bottom line.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/mobile-traffic-stop-the-bleeding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Did I Miss?</title>
		<link>http://3dolla.com/what-did-i-miss/</link>
		<comments>http://3dolla.com/what-did-i-miss/#comments</comments>
		<pubDate>Wed, 09 May 2012 06:37:25 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Free Stuff]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=190</guid>
		<description><![CDATA[WOW it&#8217;s been a long time since I&#8217;ve posted! As a matter of fact, last time I posted I think I was 9 months ago from my hotel room in Zurich looking out over the city. Anyway, that&#8217;s not the point. Things have gone absolutely crazy for me and my life has changed quite a [...]]]></description>
			<content:encoded><![CDATA[<p>WOW it&#8217;s been a long time since I&#8217;ve posted! As a matter of fact, last time I posted I think I was 9 months ago from my hotel room in Zurich looking out over the city.</p>
<p>Anyway, that&#8217;s not the point. Things have gone absolutely crazy for me and my life has changed quite a bit since then BUT I never left the game. More or less I just put away ALL distractions and have been working on some VERY interesting projects over the last few months. Don&#8217;t worry, I won&#8217;t hold out on you, you&#8217;ll find out soon enough what I&#8217;m talking about.</p>
<p>In the works:</p>
<ul>
<li>Some <strong>free tools</strong> for you guys to use on the site. I have become borderline obsessive with overdelivering lately and I go the extra mile to make sure I provide stuff you can actually USE and hopefully stuff you won&#8217;t find anywhere else (not for free anyway).</li>
<li>A couple BADASS wordpress plugins based off some custom functionality I have built into several of my sites recently. If you use WordPress and you make monies online, you&#8217;re gonna want this. These will be rolling out shortly. May have some free copies for a few folks&#8230;if you&#8217;re an experienced affiliate and you&#8217;d be interested in being a part of a focus group and giving a review, post a comment and I&#8217;ll see what I can make happen. Stay tuned.</li>
<li>An even more badass software platform that I&#8217;m going to keep under wraps for now. Let&#8217;s just say testing my ugly prototype version has been VERY successful for me, and I have spent several nights awake thinking of ways I can pack it full of features and functionality to save you time and make you more money. This will probably end up being a fully hosted solution, and at a price point for people who are serious about making huge money online and already have an idea of what they&#8217;re doing. I&#8217;ve got an itch to make this an invite only thing and I will probably only accept 10 or so users out the gate. I am currently performing stress testing and putting finishing touches on. I hope to make this available within the next month.</li>
</ul>
<p>I leave you with a shot of the Lamborghini Aventador I photographed while visiting the Lamborghini Factory in St. Agata, Italy</p>
<p style="text-align: center;"><img class="aligncenter  wp-image-192" title="Lamborghini Aventador" src="http://3dolla.com/wp-content/uploads/2012/05/aventador.jpg" alt="Affiliate Marketing Motivation" width="600" height="437" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/what-did-i-miss/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CPV Lab Giveaway – We have a winner!</title>
		<link>http://3dolla.com/cpv-lab-giveaway-we-have-a-winner/</link>
		<comments>http://3dolla.com/cpv-lab-giveaway-we-have-a-winner/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 12:54:03 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=186</guid>
		<description><![CDATA[Congratulations 3dolla reader Daniel F. for winning our giveaway. I will be contacting you ASAP. Everyone else, thanks for your support and keep watching! I&#8217;ll be doing more fun things like this in the future.]]></description>
			<content:encoded><![CDATA[<p>Congratulations 3dolla reader Daniel F. for winning our giveaway.</p>
<p>I will be contacting you ASAP.</p>
<p>Everyone else, thanks for your support and keep watching! I&#8217;ll be doing more fun things like this in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/cpv-lab-giveaway-we-have-a-winner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CPV Lab Giveaway Update</title>
		<link>http://3dolla.com/cpv-lab-giveaway-update/</link>
		<comments>http://3dolla.com/cpv-lab-giveaway-update/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 23:28:30 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=183</guid>
		<description><![CDATA[Hello all. I have been having some issues with my PC but I will post the winner Monday the 19th. The winner will be chosen from the pool of users who &#8216;liked&#8217; 3dolla as of the 16th. I am making this post from my phone. The winner will be posted here as well as on [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all. </p>
<p>I have been having some issues with my PC but I will post the winner Monday the 19th. The winner will be chosen from the pool of users who &#8216;liked&#8217; 3dolla as of the 16th. I am making this post from my phone.</p>
<p>The winner will be posted here as well as on FB. I&#8217;m trying to think of a way to make it up to you guys for the delay. Post a comment if you have any suggestions <img src='http://3dolla.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/cpv-lab-giveaway-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gender Blender</title>
		<link>http://3dolla.com/gender-blender/</link>
		<comments>http://3dolla.com/gender-blender/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 22:42:03 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[General AM]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=176</guid>
		<description><![CDATA[Shannon from Plenty of Fish has posted part 1 to what will hopefully be a never-ending series on how to engage female users. LOTS of you out there are only hitting 18-25 male traffic because it&#8217;s &#8220;easy&#8221;. Some of you are making BANK off bigger age groups and niche sets, but you&#8217;re still only hitting [...]]]></description>
			<content:encoded><![CDATA[<p>Shannon from Plenty of Fish has posted part 1 to what will <em>hopefully be a never-ending series</em> on how to engage female users. LOTS of you out there are only hitting 18-25 male traffic because it&#8217;s &#8220;easy&#8221;. Some of you are making BANK off bigger age groups and niche sets, but you&#8217;re still only hitting the male demo. I&#8217;m even guilty of this myself. Don&#8217;t be dumb&#8230;. you can easily double your volume just by targeting women.</p>
<p>Check out her findings here:<br />
<a title="http://blog.ads.pof.com/2011/09/06/shannons-guide-on-how-to-advertise-to-women-part-1/" href="http://blog.ads.pof.com/2011/09/06/shannons-guide-on-how-to-advertise-to-women-part-1/" target="_blank">http://blog.ads.pof.com/2011/09/06/shannons-guide-on-how-to-advertise-to-women-part-1/</a></p>
<p>BTW if you&#8217;ve been working on POF for long, you&#8217;ve probably had thousands of your ads go across Shannon&#8217;s screen for approval. She&#8217;s not some random person fresh out of marketing school, she&#8217;s knows POF, and she knows how an ad should engage women.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/gender-blender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Doing What We Do.</title>
		<link>http://3dolla.com/doing-what-we-do/</link>
		<comments>http://3dolla.com/doing-what-we-do/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 22:17:39 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[General AM]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=173</guid>
		<description><![CDATA[If there&#8217;s one thing I&#8217;ve seen more than anything else in my career as an internet marketer, it&#8217;s random people that want to &#8220;do what you do&#8221;. Friends, family, etc. The truth is, this game can be &#8220;easy&#8221; once it &#8220;clicks&#8221; for some people, but it&#8217;s not for everybody. There are people out there who [...]]]></description>
			<content:encoded><![CDATA[<p>If there&#8217;s one thing I&#8217;ve seen more than anything else in my career as an internet marketer, it&#8217;s random people that want to &#8220;do what you do&#8221;. Friends, family, etc. The truth is, this game can be &#8220;easy&#8221; once it &#8220;clicks&#8221; for some people, but it&#8217;s not for everybody. There are people out there who could simply never do this type of work, it&#8217;s just not in them. I know it&#8217;s good money, I know I work from home, but what is it that makes someone think they can do it just because I do? Does the title not sound boring enough? Not sound technical enough?</p>
<p>The fact is, those of us that do this &#8211; those of that live, breathe, eat, and sleep this &#8211; it is what we were created to do. I can&#8217;t count on my fingers and toes how many people I know that have asked me to teach them what I do, and I&#8217;ve even tried a few times. It&#8217;s never the exact same reason &#8211; but they always fail or give up before they even get started, and it&#8217;s hard for me to really truly understand that. </p>
<p>When you get down to it, there&#8217;s alot of reasons people fail at online marketing. Some people just don&#8217;t &#8220;get it&#8221; and you can&#8217;t find a way to break it down further than that. Some people are just too lazy. Some people just don&#8217;t have the drive. Some people don&#8217;t have the BALLS to lose a thousand dollars in a day to find something that can make them ten thousand by the end of the week.<br />
<strong><br />
All of that to say this:</strong> If someone you personally know or speak to mentions that they want to get started, give them a few quick pointers, and tell them where they can go to start learning. Once they take some leaps of faith, then you can start to help them here and there. If it&#8217;s something they TRULY want and something they are actually capable of doing, they will be able to get to a certain point on their own, just like you did. Save yourself alot of time and headaches trying to &#8220;fast track&#8221; your friends, and let them learn similar to the way you did, through a <strong>genuine</strong> desire to do <em>whatever it takes</em> to make moneys online.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/doing-what-we-do/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>What A Racist!</title>
		<link>http://3dolla.com/interracial-dating-an-advertising/</link>
		<comments>http://3dolla.com/interracial-dating-an-advertising/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 06:26:01 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[General AM]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=161</guid>
		<description><![CDATA[Interracial dating is one of what I consider the &#8220;Big 3&#8243; when it comes niche dating angles. Although there is TONS of opportunity in the interracial dating space, it is also one of the hardest eggs to crack if you don&#8217;t understand your market since there are so many variables. I thought I&#8217;d share some [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Interracial dating is one of what I consider the &#8220;Big 3&#8243; when it comes niche dating angles. Although there is TONS of opportunity in the interracial dating space, it is also one of the hardest eggs to crack if you don&#8217;t understand your market since there are so many variables. I thought I&#8217;d share some information I found while researching.</strong></p>
<p>OKCupid did some research based on response rates across various races between members of the opposite sex. The numbers are actually pretty interesting and can be used as a guide for predicting how your target demographic will respond to your dating creatives.</p>
<h2>Here is what they found regarding the way females of a particular race respond to men of a particular race:</h2>
<p><a href="http://3dolla.com/wp-content/uploads/2011/08/Reply-By-Race-Male.png"><img class="alignleft size-full wp-image-163" title="Reply-By-Race-Male" src="http://3dolla.com/wp-content/uploads/2011/08/Reply-By-Race-Male.png" alt="" width="493" height="524" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>So a few things stick out here:</h3>
<ul>
<li><strong>Black WOMEN are the MOST <em>responsive</em> across the board</strong></li>
<li><strong>White MEN are the MOST <em>responded to</em> across the board</strong></li>
<li><strong>White, Asian, and Hispanic women seem to prefer white<br />
men much more than men of any other race</strong></li>
</ul>
<h2>Now let&#8217;s take a look at how men respond:</h2>
<p><a href="http://3dolla.com/wp-content/uploads/2011/08/Reply-By-Race-Female.png"><img class="size-full wp-image-164 alignleft" title="Reply-By-Race-Female" src="http://3dolla.com/wp-content/uploads/2011/08/Reply-By-Race-Female.png" alt="" width="494" height="520" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>Observations here:</h3>
<ul>
<li><strong>Men respond at almost twice the rate of women on average (kind of expected that)</strong></li>
<li><strong>Men respond the LEAST to black women (even black men!)</strong></li>
<li><strong>White men are the LEAST responsive across the board</strong></li>
<li><strong>Middle-eastern men are the MOST responsive across the board</strong></li>
</ul>
<p>Pretty interesting stuff here. The results of this research are useful as guides even beyond interracial targeting. For instance, middle-eastern men being the MOST responsive male race demographic? That wouldn&#8217;t have been my first guess. How many people are specifically targeting middle-eastern men? Testing creatives against this research could prove that you can actually increase profit by breaking down your campaigns and strategically bidding based on CTR and conversion by race.</p>
<h2>Marriage Trends by Race</h2>
<p>I also found some information that shows trends based on marriage statistics and they are also pretty interesting. Check this out:</p>
<ul>
<li><strong>In 73% of black/white marriages, the <em>husband</em> is black and the <em>wife</em> is white</strong></li>
<li><strong>In asian/white marriages it&#8217;s over 3 times more likely that the <em>husband</em> is white</strong></li>
<li><strong>Asian/black marriages are rare but it&#8217;s over 6 times more likely that the <em>husband</em> is black in these marriages</strong></li>
<li><strong>Asian men appear to prefer asian women in marriage, while asian women are more likely to marry outside their race.</strong></li>
<li><strong>Hispanic men and women are almost equal in their preferences to marry outside their race</strong></li>
</ul>
<h2>So what does this all mean?</h2>
<p>Well it means that even if this data doesn&#8217;t translate directly to the results you&#8217;ll see with advertising, it shows that there are HUGE biases in the interracial dating niche. Testing against these biases can mean the difference between a profitable campaign and a outright loser. Simple things like using creatives with black men targeting white women instead of the opposite can make or break your campaign.</p>
<p>On the bright side, when biases are very strong, you can expect reasonable consistency once you have the data &#8211; which usually means it&#8217;s easier to scale and your campaigns will last longer.</p>
<p><strong>Please leave a comment and if you&#8217;d like to see the rest of the research data, check out the rest here:</strong><br />
<strong>&gt;</strong><a href="http://blog.okcupid.com/index.php/your-race-affects-whether-people-write-you-back/"> OKCupid &#8211; How Your Race Affects The Messages You Get<strong> </strong></a><br />
<strong>&gt;</strong><a href="http://dating.lovetoknow.com/Statistics_on_Interracial_Relationships"> LoveToKnow &#8211; Statistics on Interracial Dating </a></p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/interracial-dating-an-advertising/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Who Wants a Free Copy of CPVLab?</title>
		<link>http://3dolla.com/who-wants-a-free-copy-of-cpvlab-2/</link>
		<comments>http://3dolla.com/who-wants-a-free-copy-of-cpvlab-2/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 22:12:15 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Free Stuff]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=148</guid>
		<description><![CDATA[That&#8217;s right fellas. I&#8217;m giving away 1 free copy of CPVLab. I&#8217;m making it way too easy to win: Locate the facebook widget on the side of this page as pictured below. Within the facebook widget, locate the like button. Click it. I know it&#8217;s quite an ordeal, but for your efforts I will reward [...]]]></description>
			<content:encoded><![CDATA[<p>That&#8217;s right fellas. I&#8217;m giving away 1 free copy of CPVLab. I&#8217;m making it <strong>way</strong> too easy to win:</p>
<p></p>
<ol>
<li><strong>Locate the facebook widget on the side of this page as pictured below.</strong></li>
<li><strong>Within the facebook widget, locate the like button.</strong></li>
<li><strong>Click it.</strong></li>
</ol>
<p><img class="aligncenter size-full wp-image-150" title="likeme" src="http://3dolla.com/wp-content/uploads/2011/08/likeme.jpg" alt="" width="296" height="251" /></p>
<p>I know it&#8217;s quite an ordeal, but for your efforts I will reward 1 lucky winner. As a side note, it&#8217;s not really &#8220;free&#8221; because, well, I have to pay for it&#8230; but free in the sense that you don&#8217;t!</p>
<p>The winner will be chosen randomly and announced Sept 16th, 2011.</p>
<p>Gogogogogogo!</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/who-wants-a-free-copy-of-cpvlab-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Your Dynamic Landing Pages Suck</title>
		<link>http://3dolla.com/your-dynamic-landing-pages-suck/</link>
		<comments>http://3dolla.com/your-dynamic-landing-pages-suck/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 15:48:57 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[Advanced]]></category>
		<category><![CDATA[General AM]]></category>
		<category><![CDATA[Landing Pages]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=136</guid>
		<description><![CDATA[So you&#8217;ve come up with a landing page that works on POF (or other traffic source). To boost your efficiency and test new demographics quicker, you&#8217;ve decided to make the landing page dynamic using variables that the advertiser has set up to pass things like age, gender, location, etc through to your page. Now you&#8217;re [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve come up with a landing page that works on POF (or other traffic source). To boost your efficiency and test new demographics quicker, you&#8217;ve decided to make the landing page dynamic using variables that the advertiser has set up to pass things like age, gender, location, etc through to your page. Now you&#8217;re pimping out your pages to new demos left and right, testing age groups and calling them out by location, the money is coming in.</p>
<p>But what if I told you that you&#8217;re only hitting the tip of the iceberg here? This post is quite long but I hope you stick with me because this is really valuable information.</p>
<p>If you read my last blog post on <strong><a title="Using Dynamic Tags with POF (Part 3): Dynamic Landing Pages" href="http://3dolla.com/2011/08/using-dynamic-tags-with-pof-part-3-dynamic-landing-pages/">dynamic landing pages with POF</a></strong>, you already know the basics of how this works. You take your &amp;c1= from your prosper202 link and append POF&#8217;s dynamic tags like {gender:default} or {age:default} to the target URL so they pass through to your lander. You save your pages in .php format instead of html and add this little tidbit to the top of your landing page code:</p>
<p><span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"> <strong>$gender=@$_GET['c1'];</strong></span><br />
<span style="color: #ff6600;"> <strong>$age=@$_GET['c2'];</strong></span><br />
<span style="color: #ff6600;"> <strong>?&gt;</strong></span></p>
<p>and then dynamically display the values in your page using <span style="color: #ff6600;"><strong>&lt;?=$age?&gt; </strong></span>or <span style="color: #ff6600;"><strong>&lt;?=$gender?&gt; </strong><span style="color: #000000;">etc. Once you&#8217;ve got that down and working, it&#8217;s time to advance.</span></span></p>
<h2><span style="color: #ff6600;"><span style="color: #000000;">Taking Your Dynamic Landers To The Next Level</span></span></h2>
<p>One of the great things about POF is it allows SO many ways to target your demographic. <span style="color: #ff6600;"><span style="color: #000000;">Instead of limiting yourself with the tags that POF provides you, you can really get fancy and start adding your own custom tokens to your landing page URLs and actually call out demographic information in your lander without having to change the lander itself.</span></span></p>
<p>Awhile back, I was able to take <strong>ONE proven lander</strong> with high CTR on broad traffic and, using dynamic tags, make it work for <strong>13 different demographics</strong>.</p>
<p>Basically, I used that same landing page and set up 13 different campaigns. Each campaign was identical aside from 1 thing, RELIGION. I had the following PHP code at the top of my pages code:</p>
<p><span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"> <strong>$religion=@$_GET['c1'];</strong><strong></strong></span><br />
<span style="color: #ff6600;"> <strong>?&gt;</strong></span></p>
<p style="text-align: left;"><span style="color: #ff6600;"><span style="color: #000000;"> For each campaign I simply changed the c1= variable to the name of the religion I was targeting in the link. So my click-thru URLs on pof looked like this:<br />
</span></span><strong>http://trackingdomain.com/index.php?t202id=999&amp;c1=<span style="color: #ff6600;">Christian</span>&amp;t202kw=keywordhere</strong><br />
<strong>http://trackingdomain.com/index.php?t202id=999&amp;c1=<span style="color: #ff6600;">Catholic</span>&amp;t202kw=keywordhere</strong><br />
<strong>http://trackingdomain.com/index.php?t202id=999&amp;c1=<span style="color: #ff6600;">Lutheran</span>&amp;t202kw=keywordhere</strong></p>
<p style="text-align: left;">Then on my page (in the header for instance), the code looks something like this: <strong>Date A <span style="color: #ff6600;"><span style="color: #008000;">&lt;h1&gt;</span>&lt;?=$c1?&gt;</span> Girl?<span style="color: #008000;">&lt;/h1&gt; </span></strong><span style="color: #000000;">and will of course display whatever variable I entered in the URL.<br />
Here&#8217;s a few screenshots of it in action:</span><br />

<div class="ngg-galleryoverview" id="ngg-gallery-3-136">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://3dolla.com/your-dynamic-landing-pages-suck/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://3dolla.com/wp-content/gallery/dynreligion/catholic.jpg" title=" " class="shutterset_set_3" >
								<img title="catholic" alt="catholic" src="http://3dolla.com/wp-content/gallery/dynreligion/thumbs/thumbs_catholic.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://3dolla.com/wp-content/gallery/dynreligion/christian.jpg" title=" " class="shutterset_set_3" >
								<img title="christian" alt="christian" src="http://3dolla.com/wp-content/gallery/dynreligion/thumbs/thumbs_christian.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://3dolla.com/wp-content/gallery/dynreligion/lutheran.jpg" title=" " class="shutterset_set_3" >
								<img title="lutheran" alt="lutheran" src="http://3dolla.com/wp-content/gallery/dynreligion/thumbs/thumbs_lutheran.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

</p>
<p>Now, don&#8217;t think you have to use prosper202 for this to work, this works for any PHP page, and in my opinion (as far as tracking goes) works even better with CPVLab.  In the code <span style="color: #ff6600;"><strong>$variablenamehere=@$_GET['urltokenhere']; </strong><span style="color: #000000;">as long as your are calling the <strong>$variablenamehere</strong> part in your page and the <strong>urltokenhere</strong> matches the token you used to pass it through the URL, you can name these whatever the heck you want. If you target people that love bacon and you want to pass is through a token called &#8220;a&#8221; and assign it to the variable $favfood, your link can be http://trackingdomain.com/landingpage.php?a=bacon. Your php code at the top of the landing page will be</span></span> &lt;? session_start(); $favfood=@$_GET['a']; ?&gt;, and when you call it out on the page you&#8217;ll use &lt;?=$favfood?&gt;.  Hopefully this is making sense.</p>
<h2>Still with me?</h2>
<p>Good, because this is where the real fun starts. The beauty of dynamically inserting information with PHP variables is that it doesn&#8217;t stop at simple text insertion. You can dynamically insert these values into ANYTHING. The title, links, javascript or jquery pop-up alerts, you name it.</p>
<p>You can even dynamically change the pictures that show up on the page. Don&#8217;t believe me?</p>
<p>Check this page out: <strong><a href="http://3dolla.com/dynexample/example.php?artist=Eminem&amp;age=18&amp;state=Florida" target="_blank">http://3dolla.com/dynexample/example.php?artist=Eminem&amp;age=18&amp;state=Florida</a></strong></p>
<p>Now, that is one ugly ugly page, but I just whipped it together to show you what can be done. Go up to the address bar and <strong>change the artist= variable to either Shakira or Kesha</strong> and hit enter and see what happens. You can also change the age= variable to any number you like, or the state= variable to any state you like. Pretty nifty huh?</p>
<p>The code found before the &lt;html&gt; tag in this example looks like this:</p>
<p><strong><span style="color: #ff6600;">&lt;?</span></strong><strong></strong><br style="color: #ff6600;" /> <strong><span style="color: #ff6600;">$artist=@$_GET['artist'];</span></strong><br />
<strong><span style="color: #ff6600;">$age=@$_GET['age'];</span></strong><br />
<strong><span style="color: #ff6600;">$state=@$_GET['state'];</span></strong><br />
<strong><span style="color: #ff6600;">?&gt;</span></strong></p>
<p>And the dynamic image swapping is accomplished by naming the pictures found on the page Eminem.jpg, Shakira.jpg, etc. The img code looks like this: <strong><span style="color: #008000;">&lt;img src=&#8221;<span style="color: #ff6600;">&lt;?=$artist?&gt;</span>.jpg&#8221;&gt; </span></strong><span style="color: #000000;">so that the value stored in artist= is passed directly to the image source address and it shows the correct picture. </span></p>
<p><span style="color: #000000;">You can change as many pictures as you want at once. If you have a dating landing page that you are using to target a range of males of different of ages, you can have an image set of younger women that you display 20-35 year olds and a set of older images that you display to the 45+ demographic. For your younger demographic, just pass agerange=young and name all your images young_1.gif, young_2.gif, etc, and use the image tags <span style="color: #008000;"><strong>&lt;img src=&#8221;<span style="color: #ff6600;">&lt;?=$agerange?&gt;</span>_1.gif&#8221;&gt;</strong><span style="color: #000000;"> and for your older demo pass agerange=mature and repeat the process. Get creative with this! You can use the same page to show all blonde chicks, all brunette chicks, tall guys, short guys, fat guys, skinny guys. The possibilities are endless.</span></span></span></p>
<h2><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">More Advanced Techniques</span></span></span></h2>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">I want to cover 1 last thing you can do using custom url tokens. You can actually switch the content of an ENTIRE page or just portions of a page by using <span style="color: #ff6600;"><strong>switch</strong></span>.<br />
This is useful if you want to display either an entirely different page based on the token that gets passed, or if you have a table or some other large chunk of html you want to switch dynamically. </span></span></span></p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">I made a quick example of this which you can see here: <a href="http://3dolla.com/dynexample/lights.php?lights=off" target="_blank"><strong>http://3dolla.com/dynexample/lights.php?lights=off</strong><br />
</a></span></span></span></p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">Just follow the instructions on the page <img src='http://3dolla.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </span></span></span></p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">The top code is:<br />
</span></span></span></p>
<p><span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"> <strong>$lights=@$_GET['lights'];</strong></span><br />
<span style="color: #ff6600;"> <strong>?&gt;</strong></span></p>
<p><span style="color: #ff6600;"><span style="color: #000000;">And the code that switches the content is:</span></span></p>
<p><span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"><strong>switch ($lights)</strong></span><br />
<span style="color: #ff6600;"><strong>{</strong></span><br />
<span style="color: #ff6600;"><strong>case off:</strong></span><br />
<strong><span style="color: #ff6600;">echo &#8220;</span><span style="color: #008000;">&lt;p&gt;</span>The Lights Are Off.<span style="color: #008000;">&lt;/p&gt;</span></strong><br />
<strong><span style="color: #008000;"> &lt;p&gt;&lt;img src=&#8217;moneyoff.jpg&#8217; width=&#8217;500&#8242; height=&#8217;374&#8242;&gt;&lt;br&gt;</span></strong><br />
<strong>You see something large ahead of you but you&#8217;re not quite sure what it is.<span style="color: #008000;">&lt;/br&gt;</span></strong><br />
<strong>Go to the address bar and change lights=off to lights=on and hit enter (if you dare!) <span style="color: #008000;">&lt;/p&gt;</span><span style="color: #ff6600;">&#8220;;</span></strong><br />
<span style="color: #ff6600;"><strong>break;</strong></span></p>
<p><span style="color: #ff6600;"><strong>case on:</strong></span><br />
<strong><span style="color: #ff6600;">echo&#8221;</span><span style="color: #008000;">&lt;p&gt;</span>The Lights Were Off, But You Cleverly Turned Them On.<span style="color: #008000;">&lt;/p&gt;</span></strong><br />
<span style="color: #008000;"><strong> &lt;p&gt;&lt;img src=&#8217;moneyon.jpg&#8217; width=&#8217;500&#8242; height=&#8217;374&#8242;&gt;&lt;/p&gt;</strong></span><br />
<strong><span style="color: #008000;"> &lt;p&gt;</span>You now see that you are standing in a room full of your own internet monies that you have made.<span style="color: #008000;">&lt;br /&gt;</span></strong><br />
<strong> In addition to US Currency you have taken your strategies international and also have a nice bundle of foreign cash.<span style="color: #008000;">&lt;br /&gt;</span></strong><br />
<strong> You now feel enlightened and have the uncontrollable urge to tell all your friends about 3dolla.com<span style="color: #ff6600;">&#8220;;</span></strong><br />
<span style="color: #ff6600;"><strong>break;</strong></span><br />
<span style="color: #ff6600;"><strong>}?&gt;</strong></span></p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">In this example, the variable we are using from the URL is lights= and it is storing in the $lights PHP variable. The switch code is saying SWITCH content based on the $lights variable, and the case portion is saying that if the value of $lights is off, show this code, but if the value of $lights is on, show this code instead.  You can add as many &#8220;cases&#8221; as you want <img src='http://3dolla.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></span></span></p>
<p>A stripped down version for you below. Replace X and Y with whatever you are passing through the URL <img src='http://3dolla.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Top code:</p>
<p><span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"> <strong>$desiredvariablename=@$_GET['desiredURLtoken'];</strong><strong></strong></span><br />
<span style="color: #ff6600;"> <strong>?&gt;</strong></span></p>
<p>Content switching code:<br />
<span style="color: #ff6600;"><strong>&lt;?</strong></span><br />
<span style="color: #ff6600;"> <strong>switch ($desiredvariablename)</strong></span><br />
<span style="color: #ff6600;"> <strong>{</strong></span><br />
<span style="color: #ff6600;"> <strong>case X:</strong></span><br />
<span style="color: #ff6600;"> <strong>echo &#8220;</strong><strong><span style="color: #008000;">HTMLCODEHERE</span>&#8220;;</strong></span><br />
<span style="color: #ff6600;"> <strong>break;</strong></span></p>
<p><span style="color: #ff6600;"><strong>case Y:</strong></span><br />
<span style="color: #ff6600;"> <strong>echo&#8221;</strong><strong><span style="color: #008000;">HTMLCODEHERE</span>&#8220;;</strong></span><br />
<span style="color: #ff6600;"> <strong>}?&gt;</strong></span><br />
<strong></strong></p>
<p>Please note that when you echo html code in PHP you need to change any quotation marks used in the HTML code to apostrophes instead or it will break the code.</p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">There are more cool things you can do with PHP and if you guys like this I would be happy to do more posts like this in the future.<br />
</span></span></span></p>
<p><span style="color: #000000;"><span style="color: #008000;"><span style="color: #000000;">Please feel free to ask any questions below!<br />
</span></span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/your-dynamic-landing-pages-suck/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Using Dynamic Tags with POF (Part 3): Dynamic Landing Pages</title>
		<link>http://3dolla.com/using-dynamic-tags-with-pof-part-3-dynamic-landing-pages/</link>
		<comments>http://3dolla.com/using-dynamic-tags-with-pof-part-3-dynamic-landing-pages/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 09:51:13 +0000</pubDate>
		<dc:creator>3Dolla</dc:creator>
				<category><![CDATA[$$$ Guides]]></category>
		<category><![CDATA[Case Studies]]></category>
		<category><![CDATA[General AM]]></category>

		<guid isPermaLink="false">http://3dolla.com/?p=128</guid>
		<description><![CDATA[The long overdue final post in this series covers using  Plenty of Fish&#8217;s dynamic tags (also known as dynamic tokens) to create dynamic landing pages that can literally line your pockets with cash if done correctly. For this particular piece of the series, you will need to be comfortable moving around in the code of [...]]]></description>
			<content:encoded><![CDATA[<p>The long overdue final post in this series covers using  Plenty of Fish&#8217;s dynamic tags (also known as dynamic tokens) to create dynamic landing pages that can literally line your pockets with cash if done correctly. For this particular piece of the series, you will need to be comfortable moving around in the code of your lander.  Nothing scary I promise <img src='http://3dolla.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>From the previous posts in this series you should already know how to pass the dynamic variables though the URL to your tracking link or landing pages. Quick refresher, add the desired tag, ie. {gender:default}, directly into the target URL on POF or in Mr. Green&#8217;s POF uploader as either a &amp;c1= token, or your own custom token.</p>
<p>Custom token you say? Yessir (or ma&#8217;am).  This is where this gets powerful, big money-little work powerful &#8212; but since it doesn&#8217;t apply only to POF I will be covering it in a followup post.  But let&#8217;s not get ahead of ourselves, I want to make sure you understand how it works.</p>
<h2>The Code</h2>
<p>First of all, you are going to need to save your landers as .php files instead of .html &#8212; if you&#8217;re new to this sort of thing don&#8217;t worry, the only thing this does is tell your server to look for PHP code inside the page and process it. It won&#8217;t affect the HTML on the page at all.</p>
<p>Okay, so you&#8217;re passing these dynamic tags through the URL and you need your page to GRAB them and USE them in your copy. Now, let&#8217;s assume you are passive the {gender:default} token through the &amp;c1= variable, and the age token through the c2 variable. You&#8217;ll want to paste this into the code of your landing page BEFORE the &lt;html&gt; tag. This should be the very first thing in your code:</p>
<p><strong><span style="color: #ff6600;">&lt;?</span></strong><br />
<strong><span style="color: #ff6600;">session_start();</span></strong><br />
<strong><span style="color: #ff6600;">$gender=@$_GET['c1'];</span></strong><br />
<strong><span style="color: #ff6600;">$age=@$_GET['c2'];</span></strong><br />
<strong><span style="color: #ff6600;">?&gt;</span></strong></p>
<p>This tells your page to GET the tokens that got passed through the url from the c1 and c2 variables and ASSIGN them to $gender and $age. Keep in mind, YOU define that the php variable is called, so it doesn&#8217;t HAVE to be $gender, it could be $g, $sex, $roflmao, you get the idea. Most of the time your lander is more targeted toward men or women anyway, so you can assign any available dynamic POF tag that will be useful to you on your lander or for tracking.</p>
<p>Now that we have grabbed the gender and age from the URL and stored them in a PHP variable, we can now echo that variable anywhere in the page. ANYWHERE. Want to insert the age somewhere? we have to do is use the following code to insert it:</p>
<p><strong><span style="color: #ff6600;">&lt;?=$age?&gt;</span></strong></p>
<p><span style="color: #ff6600;"><span style="color: #000000;">So to use this in your header, instead of hard-coding &#8220;25 Year Old Men Wanted&#8221;  your code will say <strong><span style="color: #339966;"><span style="color: #008000;">&lt;h1</span>&gt;</span></strong></span></span><span style="color: #ff0000;"><strong><span style="color: #ff6600;">&lt;?=$age?&gt;</span> <span style="color: #000000;">Year Old Men Wanted</span></strong><span style="color: #339966;"><strong><span style="color: #008000;">&lt;/h1&gt;</span></strong><br />
<span style="color: #000000;">A 25 year old visitor in this case will see </span></span></span>&#8220;<strong>25 Year Old Men Wanted</strong>&#8221; while a 37 year old visitor will see, you guessed it: &#8220;<strong>37 Year Old Men Wanted</strong>&#8220;.</p>
<p>Now if you want to get really fancy, you can use the tag to modify an age RANGE. If you have segmented out a campaign across several age ranges (which I always recommend for testing), you can take your 45-49 age range and use &amp;c2={age:default}-50 in the actual target url and now if a 47 year old male visits the page the header will read &#8220;47-50 Year Old Men Wanted&#8221;.</p>
<p>You can also of course use the dynamic POF tokens as way to geotarget on a state level which is pretty awesome. Instead of passing {gender:default} gender through &amp;c1=, pass {state:default} and in the PHP code at the top of the page, assign the value to $state instead of $gender. Now you can call on it like this: <strong><span style="color: #008000;">&lt;h1&gt;</span><span style="color: #ff6600;">&lt;?=$age?&gt;</span> Year Old <span style="color: #ff6600;">&lt;?=$state?&gt;</span> Men Wanted</strong><span style="color: #008000;"><strong>&lt;/h1&gt;</strong> <span style="color: #000000;">and your lander will now display &#8220;<strong>47-50 Year Old Texas Men Wanted</strong>&#8220;. If you are using State-level geotargeting this is great because it doesn&#8217;t rely on outside sources so there is no chance of affecting load time on your lander.<br />
</span></span></p>
<p><span style="color: #008000;"><span style="color: #000000;">Now you can easily use any of POF&#8217;s tokens to dynamically change your landing page so that it speaks directly to your target demographic.<br />
</span></span></p>
<p>I am going to be covering some really advanced tactics on my next post that will show you some really evil tricks to dynamic landing pages that you can use for ANY traffic source including POF that will allow you to get even better CTR&#8217;s and boost your ROI.</p>
<p>Please feel free to post any questions or suggestions you have below.</p>
]]></content:encoded>
			<wfw:commentRss>http://3dolla.com/using-dynamic-tags-with-pof-part-3-dynamic-landing-pages/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss><!-- Dynamic page generated in 0.434 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-05-15 00:17:59 --><!-- Compression = gzip -->

