<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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/"
	>

<channel>
	<title>Learn Affiliate Marketing - Flop Idle &#187; affiliate marketing</title>
	<atom:link href="http://www.flopidle.com/category/affiliate-marketing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flopidle.com</link>
	<description>Sharing tips and tricks helping you learn affiliate marketing</description>
	<lastBuildDate>Fri, 08 Apr 2011 22:54:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Using A PHP Redirect</title>
		<link>http://www.flopidle.com/826/using-a-php-redirect/</link>
		<comments>http://www.flopidle.com/826/using-a-php-redirect/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 01:17:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate link]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[php redirect]]></category>
		<category><![CDATA[redirect]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=826</guid>
		<description><![CDATA[PHP is a scripting language that is very common in web development. PHP originally meant Personal Home Page, but soon changed to &#8211; their is no way I will bore you anymore with this stuff! All you need to know is that we can use PHP to redirect our article links to affiliate products;) What&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flopidle.com/wp-content/uploads/2009/10/phpredirect.gif"><img class="aligncenter size-full wp-image-828" title="php redirect picture" src="http://www.flopidle.com/wp-content/uploads/2009/10/phpredirect.gif" alt="php redirect picture" width="350" height="200" /></a></p>
<p>PHP is a scripting language that is very common in web development. PHP originally meant <strong>P</strong>ersonal <strong>H</strong>ome <strong>P</strong>age, but soon changed to &#8211; their is no way I will bore you anymore with this stuff! All you need to know is that we can use PHP to redirect our article links to affiliate products;)</p>
<p><span id="more-826"></span><strong>What&#8217;s A Redirect?.</strong></p>
<p>You walk up to your favorite store to try and enter, but notice the sign on the door telling you that they moved down the street, so that&#8217;s where you head toward.</p>
<p>A PHP redirect for websites work the same, you may lead people to your site via a link, but when you insert some simple PHP code, once they get to your site they are immediately sent to another website, your affiliate products website.</p>
<p><strong>Why Do I Need To Redirect?</strong></p>
<p>Some article directories I&#8217;ve been using will not allow you to link directly to your affiliate sales page, so I thought it might be a good idea to share with you the method I use that allows me to link to an affiliate product, and does not take hours or lines of code to pull off.</p>
<p>This is what EzineArticles require&#8230;</p>
<blockquote><p><span style="color: #333333;"><em><strong>EzineArticles.com Editorial Guidelines: (AFFILIATE PROGRAMS):</strong></em></span></p>
<p><em>Affiliate links will be allowed if the link is a domain name you own which forward/redirects to the affiliate link from the top-level of the domain name. For example, it is permissible to forward to an affiliate link from:</em></p>
<p><em>http://your-company-name.com/</em></p>
<p><em>&#8230;but it would not be permissible to forward to an affiliate link from:</em></p>
<p><em>http://your-company-name.com/page.html</p>
<p>http://your-company-name.com/subdirectory/</p>
<p>http://your-company-name.com/subdirectory/page.html</p>
<p>http://sub-domain.your-company-name.com/</em></p>
<p><em>Any article with an affiliate link that does not adhere to this guideline will cause the article to be rejected.</em></p></blockquote>
<p>Also ArticlesBase will not allow direct affiliate links within articles posted on their site, how rude! GoArticles on the other hand does;)</p>
<p><span style="color: #000000;"><strong>How Do I Redirect?</strong></span></p>
<p><span style="color: #000000;">Let&#8217;s get started. </span></p>
<p><span style="color: #000000;">I have a site that I use all my redirects on, this is an example of my redirection process. This would be my site&#8230;.<br />
</span></p>
<p style="text-align: center;"><span style="color: #000000;"><strong><em>www.redirectmephplease.com</em></strong></span></p>
<p style="text-align: left;"><span style="color: #000000;">Now if I sent someone to that site via a link as it is now, they would just end up at the site above and nothing would happen. But if I add some PHP code into the index file of that site with my affiliate link included, as soon as the visitor hit the site above they would then be redirected to my affiliate page.</span></p>
<p style="text-align: left;"><span style="color: #000000;">Here is the code&#8230;</span></p>
<blockquote>
<p style="text-align: left;">&lt;?php<br />
header(&#8220;Location: http://www.myaffiliateproduct.com/myaffiliatetrackingcode&#8221;);<br />
?&gt;</p></blockquote>
<p>Just three lines of code!</p>
<p>If you understand what and where your index.html file is, then all you need to do is add that code above (with your own affiliate link included) into your index.html file BUT&#8230;&#8230;&#8230; rather than save that file as a .html file, you need to now change it to .php -&gt; index.php and not index.html and save it.</p>
<p>To make it even easier for you&#8230;</p>
<blockquote><p>&lt;?php<br />
header(&#8220;Location: <strong>PASTE YOUR CLICKBANK LINK HERE STARTING WITH THE HTTP://</strong> &#8220;);<br />
?&gt;</p></blockquote>
<p>Just paste in your Clickbank affiliate link into the section in bold above removing everything from <strong>PASTE</strong>, right up to, but not including the <strong>&#8220;);</strong> &lt;- leave that part where it is.</p>
<p>So you should now have a file called index.php with only the three lines of code above in it.</p>
<p><strong>But Can I Only Use One Redirect Per Article Or Website?</strong></p>
<p>Well yes and no. Using EzineArticles you are only allowed just one redirect, and it must come from your main top-level domain, which would be&#8230;</p>
<p style="text-align: center;"><span style="color: #000000;"><strong><em>www.redirectmephplease.com</em></strong></span></p>
<p>But because we added that index.php PHP redirect code above, this would now divert people to your affiliate link which is what we want, but then if you decide to write another article using Ezine, then you have to add that PHP index.php redirect file to anther one of your domains using the same process!!</p>
<p>However if you use ArticlesBase you can use more than one redirect per domain. I hear you saying &#8220;Yes, but we just used our index file to send people somewhere else, how can we use another?&#8221; My method here is to add a new folder to my site.</p>
<p>Like this example&#8230;</p>
<p style="text-align: center;"><span style="color: #000000;"><strong><em>www.redirectmephplease.com/articletwo/</em></strong></span></p>
<p>So I added the folder articletwo and uploaded it into my public_html directory for that domain. Remember to use a new folder, and not just a file. Using a folder means we can again use our redirect index.php file but this time with a different affiliate link included.</p>
<p>Like this&#8230;.</p>
<p style="text-align: center;"><span style="color: #000000;"><strong><em>www.redirectmephplease.com/articletwo/index.php</em></strong></span></p>
<p>You can do this time and time again making sure every time you write a new article, you add a new folder and a new index.php file.</p>
<p><strong>Tip Time</strong> &#8211; I always name my new folders using my main keyword that I&#8217;m targeting for that article, so if I was writing an article that targets the keyword-&gt; fuzzy ferrets &lt;- then the folder and redirect link I would  create  would look like&#8230;</p>
<p style="text-align: center;"><span style="color: #000000;"><strong><em>www.redirectmephplease.com/fuzzyferrets/index.php</em></strong></span></p>
<p>I do this for SEO purposes myself, but you can name your folders whatever you want, even fuzzy ferrets;)</p>
<p><strong>Where Do I Paste My PHP Redirected URL?</strong></p>
<p>Now you have it saved on your domain always check to make sure it works by redirecting you over to your affiliate page, if it works then you can get started adding this link into your articles.</p>
<p>Some article directories only allow you to post just one link in your author bio at the end of your article, but others will let you post it where you want, whatever one you use just make sure you read the guidelines so that your article does not get rejected.</p>
<p>Another thing to take notice of is that if you can use keyword links in your article rather than just pasting the entire link in like this..</p>
<p style="text-align: center;"><em><strong>http://</strong></em><span style="color: #000000;"><strong><em>www.redirectmephplease.com/fuzzyferrets/index.php</em></strong></span></p>
<p>Instead you might be allowed to use a &lt;a href&gt; like this&#8230;</p>
<p>&lt;a href=&#8221;<span style="color: #000000;"><strong><em>http://www.redirectmephplease.com/fuzzyferrets/index.php&#8221;&gt;<span style="color: #0000ff;">Fuzzy Ferrets</span>&lt;/a&gt;</em></strong></span></p>
<p>I colored the link that people will see if you can use a &lt;a href&gt; in blue, because that is what they will only be able to see from that code above, which is also great for SEO by being able to use you main keyword in the link text.</p>
<p>Hopefully that cleared up using a PHP redirect to link to your own affiliate products in articles, the good thing about this php method is that it&#8217;s very simple to repeat many times over. However if you have questions or get stuck please let me know below and I&#8217;ll do my very best to help you through it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/826/using-a-php-redirect/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>$200 Per Week Target Update</title>
		<link>http://www.flopidle.com/779/200-per-week-target-update/</link>
		<comments>http://www.flopidle.com/779/200-per-week-target-update/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 01:56:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate challenge]]></category>
		<category><![CDATA[high listings in the search engines]]></category>
		<category><![CDATA[traffic to that article]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=779</guid>
		<description><![CDATA[Still without a sale yet, but I have just completed my 20th article which made this weeks article goal! I&#8217;m actually finding it easier to write the articles the more I do of them, however it does help a great deal if you have knowlege, and are passionate about the subject you write about. I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre2003.jpg"><img class="aligncenter size-full wp-image-780" title="CB account  pre 200#3" src="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre2003.jpg" alt="CB account  pre 200#3" width="320" height="480" /></a></p>
<p>Still without a sale yet, but I have just completed my 20th article which made this weeks article goal! I&#8217;m actually finding it easier to write the articles the more I do of them, however it does help a great deal if you have knowlege, and are passionate about the subject you write about.</p>
<p><span id="more-779"></span>I found a CPA offer I will be matching to a few keywords that I can base more articles on, these keywords are long tail but still have a decent amount of traffic if I hit the top spots in the search engines.</p>
<p>One of my articles has hit number one in Google so im starting to see an increase in traffic to that article, which will hopefully mean some sales this week?</p>
<p>I now plan on taking an in-depth look at why this particular article hit number one, if I can get a method together that I can repeat over and over, then I just need to find a similar article/keyword/competition combination and repeat it again.</p>
<p>My main aim is to get a few consistent sales from an article, once this is achieved I will then create a website around that particular articles topic, and continue to write content for the website hoping to gain high listings in the search engines for the same converting keywords.</p>
<p>As soon as the website starts to make consistent sales I will then carry on writing even more articles, but this time rather than point links to the vendor page, I&#8217;ll instead point them to my site which I can then use to get customer emails and start to build, and sell to a list instead.</p>
<p>But for now I&#8217;m concentrating on getting my first sale in this ongoing project. Another 20-30 articles is my aim for this week!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/779/200-per-week-target-update/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>$200 Per Week Target Update Day 2</title>
		<link>http://www.flopidle.com/775/200-per-week-target-update-day-2-2/</link>
		<comments>http://www.flopidle.com/775/200-per-week-target-update-day-2-2/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 19:49:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate challenge]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=775</guid>
		<description><![CDATA[13 articles live so far with  a couple still pending. Altogether the articles have about 136 views so far but no sales as of yet. My highest ranking for one of the articles is up at number 2 for the phrase match on that keyword, so I&#8217;m hoping to see an increase in traffic for [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre20021.jpg"><img class="aligncenter size-full wp-image-777" title="CBaccountpre200#2" src="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre20021.jpg" alt="CBaccountpre200#2" width="320" height="480" /></a></p>
<p><strong>13 articles live so far with  a couple still pending. Altogether the articles have about 136 views so far but no sales as of yet. My highest ranking for one of the articles is up at number 2 for the phrase match on that keyword, so I&#8217;m hoping to see an increase in traffic for that over the next few hours or so.</strong></p>
<p><strong><span id="more-775"></span><br />
</strong></p>
<p>I&#8217;ll be writing more articles and gaining links to them over the course of the next couple of days, hopefully by Sunday I can hit about 20 articles this week along.</p>
<p>I&#8217;ll keep updating as much as I can!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/775/200-per-week-target-update-day-2-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>$200 Per Week Target Update Day 2</title>
		<link>http://www.flopidle.com/769/200-per-week-target-update-day-2/</link>
		<comments>http://www.flopidle.com/769/200-per-week-target-update-day-2/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 18:26:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate challenge]]></category>
		<category><![CDATA[clickbank]]></category>
		<category><![CDATA[long tail keywords]]></category>
		<category><![CDATA[pepperjam]]></category>
		<category><![CDATA[plimus]]></category>
		<category><![CDATA[writing articles]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=769</guid>
		<description><![CDATA[Here is a sorry sight for your eyes, and to also show that I have some work ahead of me to make the new affiliate challenge I set for myself yesterday. That picture is from my Clickbank account, nothing to write home about huh:) After I finished the post yesterday I went on to write [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre200.jpg"><img class="aligncenter size-full wp-image-770" title="CB account pre $200" src="http://www.flopidle.com/wp-content/uploads/2009/10/CBaccountpre200.jpg" alt="CB account pre $200" width="320" height="480" /></a></p>
<p><strong>Here is a sorry sight for your eyes, and to also show that I have some work ahead of me to make the new <a title="$200 per week affiliate challenge" href="http://www.flopidle.com/764/try-all-and-error-200-a-week-by-january-2010/" target="_blank">affiliate challenge</a> I set for myself yesterday. That picture is from my Clickbank account, nothing to write home about huh:)</strong></p>
<p><strong><span id="more-769"></span></strong></p>
<p>After I finished the post yesterday I went on to write 4 articles on some Clickbank products I had in mind. I picked the products based on the fact that they converted in PPC, and as I cannot use PPC anymore I wanted to give them a try using only free traffic methods.</p>
<p>I&#8217;m going to start with 5 products, 2 from clickbank, 2 from <a title="plimus affiliate center" href="http://www.plimus.com" target="_blank">plimus.com</a>, and a CPA offer via <a title="PepperJam" href="http://www.pepperjam.com" target="_blank">PepperJam</a>.com. Again some of the products were selected because of a successful PPC campaign in the past, and a couple of others I researched into them and decided that they too had a really good chance of converting.</p>
<p>The articles will be based around keywords for that product, each one will be 100% original and written by me only. I started with ArticleBase and GoArticles because they seem to publish your articles so much quicker than EzineArticles, but I do have a few articles waiting to be published with Ezine. It will be interesting to see how it turns out.</p>
<p>Because I am aiming at writing a lot of articles, I wanted to make sure that the product selection I am going with is at least enjoyable to write about, I also went with products I had some general knowledge in as well, this will cut down on research time and any other fact finding issues.</p>
<p>Three articles went live yesterday so I&#8217;ll spend some time working on some back-links to each article, just making sure I spread out the link love over a period of time, and not bring them all in at once.</p>
<p>I made sure I selected the keywords correctly making sure there was not a great deal of competition, but also that the keyword did have decent traffic all at the same time. Long-tail keywords will be mostly used in order to try and grab some top listings in the search engines, so I can eventually grab that traffic for free!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/769/200-per-week-target-update-day-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Try-All And Error, $200 A Week By January 2010</title>
		<link>http://www.flopidle.com/764/try-all-and-error-200-a-week-by-january-2010/</link>
		<comments>http://www.flopidle.com/764/try-all-and-error-200-a-week-by-january-2010/#comments</comments>
		<pubDate>Wed, 07 Oct 2009 00:40:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=764</guid>
		<description><![CDATA[I&#8217;ve decided to set myself another affiliate challenge, this one however is not in the thousands. Last time by using the Operation Imac challenge it really gave me something to work toward. So I thought I&#8217;d start another personal challenge!  Here is the outline for this one. Target: $200 per week Deadline: December 31st 2009 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I&#8217;ve decided to set myself another affiliate challenge, this one however is not in the thousands. Last time by using the Operation Imac challenge it really gave me something to work toward. So I thought I&#8217;d start another personal challenge!  Here is the outline for this one.</strong></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Target: <span style="color: #ff0000;">$200</span> per week</strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Deadline: December 31st 2009</strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>$$ Per Day: <span style="color: #ff0000;">$29</span></strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>$$ Per Hour: <span style="color: #ff0000;">$1.21</span></strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong><span style="color: #ff0000;"><span style="color: #000000;">NO PPC!</span><br />
</span></strong></span></p>
<p><span id="more-764"></span></p>
<p>What&#8217;s my Plan?. Because I cannot use PPC for this challenge everything I attempt will have to be 100% FREE! So here is an outline of what I&#8217;ll be trying out.</p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Article Marketing</strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Classified Ads</strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>CPA Offers</strong></span></p>
<p style="text-align: center;"><span style="text-decoration: underline;"><strong>Blogging It Up</strong></span></p>
<p style="text-align: left;">A big part of this challenge will fall to article marketing. I&#8217;ve never really done a lot with articles, I have written a few but never really concentrated too much on it. So this challenge is going to change all that I hope.</p>
<p style="text-align: left;">What I would like to do is write about 10-20 articles a week, and try out as many different article sites as I can, at least the most well known ones at first, but I&#8217;ll also add in a few newer sites to test how they compare to each other.</p>
<p style="text-align: left;">It&#8217;s been a while since I&#8217;ve used classified ads, so it will be interesting to start this up again and test some methods using the free listing services.</p>
<p style="text-align: left;">CPA offers will also play into my plans. I&#8217;ve been researching for the last few days to try and get an idea if what sort of CPA program I will go with, so I do have a few in mind already.</p>
<p style="text-align: left;">I have some blogs set up that I&#8217;ve not really paid much attention too recently, so this challenge will give me an excellent chance to really invest my time in those sites, and hopefully get them off the ground again.</p>
<p style="text-align: left;">The last challenge I attempted was a big learning curve, and I&#8217;m hoping that this one will be the same. Trial(Try-All) and error are sometimes the best way to learn, and pretty much the way I have always learned in the past:)</p>
<p style="text-align: left;">Anyway, I must go now a get started right away! $200 per week here I come!!</p>
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/764/try-all-and-error-200-a-week-by-january-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whiteboard Wonder &#8211; Planning Your Way To Success</title>
		<link>http://www.flopidle.com/751/whiteboard-wonder-planning-your-way-to-success/</link>
		<comments>http://www.flopidle.com/751/whiteboard-wonder-planning-your-way-to-success/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 00:50:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[making a target]]></category>
		<category><![CDATA[obtainable goals]]></category>
		<category><![CDATA[whiteboard planning]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=751</guid>
		<description><![CDATA[Recently I decided enough was enough, and that I needed a game plan and a target to work toward. Gone are the days of wishing for Ferrari&#8217;s and Yachts! I needed a concrete and obtainable monetary figure to work toward. I thought that if I had short term goals I would then be able to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flopidle.com/wp-content/uploads/2009/09/WhiteboardTitle.jpg"><img class="aligncenter size-full wp-image-752" title="WhiteboardTitle" src="http://www.flopidle.com/wp-content/uploads/2009/09/WhiteboardTitle.jpg" alt="WhiteboardTitle" width="408" height="305" /></a></p>
<p>Recently I decided enough was enough, and that I needed a game plan and a target to work toward. Gone are the days of wishing for Ferrari&#8217;s and Yachts! I needed a concrete and obtainable monetary figure to work toward.</p>
<p><span id="more-751"></span></p>
<p>I thought that if I had short term goals I would then be able to work my way toward bigger goals in more manageable chunks. Almost like climbing up a set of stairs by starting with the very first step. Or if your really crazy you might even go for the second step instead;)</p>
<p>For this planning stage I even bought some brand new shiny dry erase markers. <a href="http://www.amazon.com/gp/product/B00006IFIR?ie=UTF8&amp;tag=webbdesi02-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B00006IFIR">EXPO Dry Erase Marker Organizer, Chisel Tip, Assorted, Six per Kit (83056)</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=webbdesi02-20&amp;l=as2&amp;o=1&amp;a=B00006IFIR" border="0" alt="" width="1" height="1" /><br />
&lt;- If you need dry erase markers these work great, last ages, and will get your site to number 1 in Google overnight! Ok that&#8217;s a lie, but if you do buy them through that link I will be another step closer to my target;)</p>
<p>Where was I&#8230;&#8230;&#8230; Oh right.  So This is what I did. For those also in &#8220;day jobs&#8221; like me we shall call this the great escape;)</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Line Up Your Target</span></span></h2>
<p>I decided my most important first target would be to work toward taking over my job income, with what I earn online. I then went to break down what I would need to earn online by &#8211; per month &#8211; per week &#8211; per day &#8211; per hour and even per 30mins!</p>
<p>But rather than take my monthly income from my job exactly as it is, to make it even more obtainable I wrote down every single bill/tax that we need to pay, added food/gas expenses as well as some spending money for dry erase refills! And then rounded it up a bit for the unknown expenses. In the end I had a figure to work with that would still pay all the bills, and was also slightly under my job income per month.</p>
<p>Here is how that whiteboard looked after I got through the planning stage.</p>
<p><a href="http://www.flopidle.com/wp-content/uploads/2009/09/Whiteboardfull.jpg"><img class="aligncenter size-full wp-image-753" title="Whiteboardfull" src="http://www.flopidle.com/wp-content/uploads/2009/09/Whiteboardfull.jpg" alt="Whiteboardfull" width="522" height="391" /></a></p>
<p>As you can see from this picture, for a &#8220;Full Takeover&#8221; of income I would need to earn $3.29 per hour, every hour of every day to achieve it.</p>
<p>Now I had something tangible to work with, but I didn&#8217;t just stop at that. Under the full takeover you will see &#8220;24 hr week&#8221; which is referring to what I would have to earn that would enable me to cut my work week hours down to just 24.</p>
<p>The reason for all of this is to make it possible for me to dedicate more and more time to internet/affiliate marketing. With the biggest first step target to obtain a full-time income from my methods, that then in turn would allow me to spend all my time online!</p>
<p>$3.29 per hour is going to seem ridiculous to some, but when you are pretty new it&#8217;s actually a big target;)</p>
<p>My biggest problem is consistency, some days I make this target look like its going to be easy, but then you go days with less numbers in your affiliate accounts than the alphabet;)</p>
<p>The good news is that I&#8217;ve never had a target to aim toward until now, so not only do I have a target to aim for, I also know that its pretty obtainable which keeps my motivation sky high! Since completing this whiteboard plan I&#8217;ve definitely been able to focus so much more on what I need to be doing, and not wasting time.</p>
<p>The last thing I did was leave myself a reminder every time I sit down at the computer&#8230;.</p>
<p><a href="http://www.flopidle.com/wp-content/uploads/2009/09/WhiteboardTitle327.jpg"><img class="aligncenter size-full wp-image-754" title="WhiteboardTitle327" src="http://www.flopidle.com/wp-content/uploads/2009/09/WhiteboardTitle327.jpg" alt="WhiteboardTitle327" width="360" height="480" /></a></p>
<p>Before I leave you, if you need a whiteboard to try this one;) -&gt; <a href="http://www.amazon.com/gp/product/B0006YZDOS?ie=UTF8&amp;tag=webbdesi02-20&amp;linkCode=as2&amp;camp=1789&amp;creative=390957&amp;creativeASIN=B0006YZDOS">White Melamine Dry Erase Boards with Aluminum Frame, 36 x 24 (UNV43623) Category: Dry Erase Boards</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.com/e/ir?t=webbdesi02-20&amp;l=as2&amp;o=1&amp;a=B0006YZDOS" border="0" alt="" width="1" height="1" /></p>
<p>This is a killer 36&#215;24 whiteboard with an aluminum frame, and not only that but it will also double your list practically over night. It&#8217;s a MUST HAVE!;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/751/whiteboard-wonder-planning-your-way-to-success/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using Content Networks To Find Affiliates</title>
		<link>http://www.flopidle.com/688/using-content-networks-to-find-affiliates/</link>
		<comments>http://www.flopidle.com/688/using-content-networks-to-find-affiliates/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 18:57:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate offer]]></category>
		<category><![CDATA[affiliate programs]]></category>
		<category><![CDATA[find affiliates]]></category>
		<category><![CDATA[how to find affiliates]]></category>
		<category><![CDATA[product promotion]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=688</guid>
		<description><![CDATA[With the recent launch of The Self Publishing System well underway, I now wanted to share with you a method I&#8217;m using right now to find affiliates to help me promote this product. After all its the affiliates that promote your work that you want to succeed the most! A win win. When I first [...]]]></description>
			<content:encoded><![CDATA[<p><strong>With the recent launch of The Self Publishing System well underway, I now wanted to share with you a method I&#8217;m using right now to find affiliates to help me promote this product. After all its the affiliates that promote your work that you want to succeed the most! A win win.</strong></p>
<p><span id="more-688"></span></p>
<p>When I first launched The Self Publishing System right off the bat I hit PPC(Pay Per Click) search networks, which I not only singled out Google Adwords with, oh no that would be discrimination after all. Do not forget about Yahoo and now Bing, both have great PPC platforms to use in your new promotion campaigns.</p>
<p>For obvious reasons using the PPC search network to try and match my product with somebody&#8217;s related search term is the first thing I always try. And occasionally I&#8217;ll also add a Content PPC Campaign into the mix too.</p>
<p>If you&#8217;re not too sure about what I mean by PPC Search Network and PPC Content Network, let me explain this first&#8230;</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">PPC Search And PPC Content Networks</span></span></h2>
<p><span style="color: #800000;"><span style="text-decoration: underline;">SEARCH NETWORK:<br />
</span></span></p>
<p>The best way to explain this is to use a character named&#8230;&#8230;. Tom. Tom is at home right now in front of his computer with an idea that he wants to find a book about self publishing. So he opens up Google at types in&#8230;</p>
<p><a href="http://www.flopidle.com/wp-content/uploads/2009/09/tom1.gif"><img class="aligncenter size-full wp-image-689" title="google search network" src="http://www.flopidle.com/wp-content/uploads/2009/09/tom1.gif" alt="google search network" width="609" height="75" /></a>He then clicks on that &#8220;Search&#8221; button and gets these results &#8230;</p>
<p><a href="http://www.flopidle.com/wp-content/uploads/2009/09/tom2.gif"><img class="aligncenter size-full wp-image-691" title="Search network 2" src="http://www.flopidle.com/wp-content/uploads/2009/09/tom2.gif" alt="Search network 2" width="609" height="450" /></a></p>
<p>Now I know this is not the best image quality you have ever seen im sure, all this is for is to have you look at the two circled red boxes above. The two red boxes represent the search PPC network, they are paid listings that display along side the regular un-paid listings when someone enters a keyword search into Google, and in this case that keyword search was &#8220;Self Publishing Book&#8221;.</p>
<p>If you use the PPC Search Network its your job to match peoples keyword phrases with your ads products topic. So in the case of Tom&#8217;s search, all the PPC ads in the red boxes are related products to his search term, and its that ads job to try and entice Tom to click on it rather than the regular Google listings, if he does, the owner of that ad is charged a cost per click(CPC).</p>
<p><span style="color: #800000;"><span style="text-decoration: underline;">CONTENT NETWORK:</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;">Here we use Tom again, only this time we join him after he has already clicked on one of the listings in the previous search, and as the paid ads did not appeal to him he ended up clicking on one of the natural listings, #4 to be exact&#8230;</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;"><a href="http://www.flopidle.com/wp-content/uploads/2009/09/tom3.gif"><img class="aligncenter size-full wp-image-692" title="Content Network 1" src="http://www.flopidle.com/wp-content/uploads/2009/09/tom3.gif" alt="Content Network 1" width="609" height="559" /></a></span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;">Again see that red box? Welcome to the PPC Content Network!!</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;">These ads are displayed along side content within a website -&gt; &#8220;Content Network&#8221;. So now Tom is reading an article about self publishing on ehow.com, he can still be presented with PPC ads, only this time they are content based.</span></span></p>
<p><span style="color: #800000;"><span style="color: #000000;">Now if Tom decides to click on one of the ads in the red circle the owners still gets charged for the CPC, but not as much as the search network. Why?&#8230;.</span></span></p>
<blockquote><p><span style="color: #800000;"><span style="color: #000000;"><em>Because the PPC Search Network is more targeted and more likely to get you sales than the content network(in most cases).</em></span></span></p></blockquote>
<p>For example in Tom&#8217;s first search he was looking for a book about self publishing in a buying state of mind, so the results he was presented with were all possible targets for him to spend money.</p>
<p>In the second search Tom was already at a site reading about self publishing, and may have already found what he was looking for. So the chances of him clicking on your content based PPC ads are greatly reduced.</p>
<p>So why even bother with the PPC Content Network?..</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">The Great Thing About The Content Network</span></span></h2>
<p style="text-align: left;">Think of it like this&#8230;.</p>
<blockquote>
<p style="text-align: center;"><strong>The PPC Search Network is usually a lone searcher looking for information. Meaning </strong><strong>1.</strong></p>
</blockquote>
<p>So even though we are fond of Tom, we sometimes might want to reach a bigger audience with one ad using the content network&#8230;</p>
<blockquote>
<p style="text-align: center;"><strong>The PPC Content Network is usually a hoard of people with related interests in the website they are on.</strong></p>
</blockquote>
<p>And remember the Content Network CPC is usually much lower than the Search Network, sometimes its considerable!</p>
<p>Just remember that in the content network people are usually not really looking for information as such, they are more on that site because they go there all the time, or it could even be a forum where they discuss everything about that sites topic. So when using the content network expect your Click Through Rate (which is the # of times your ad is displayed and clicked on) to be awful!</p>
<p>Don&#8217;t panic about numbers just yet, here is how to use the PPC Content Network to get Affiliates..</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Content Ads And Affiliates</span></span></h2>
<p style="text-align: left;">I&#8217;m not going to take you through all the stages of how to set up an account and get a PPC Content Campaign up and running, if you do need these steps you can visit this <a title="google adwords" href="http://www.adwords.google.com" target="_blank">Google Adwords</a> page and learn all about it.</p>
<p style="text-align: left;">What I am going to do is show you the steps im using right now to find affiliates using the Content Network. My main idea behind all of this is that I don&#8217;t think in most cases affiliates go into Google as Tom did, and enter a search term like &#8220;Affiliate products to promote&#8221;. Some do, but the majority of them in my eyes are already hanging out together at sites all over the web.</p>
<p style="text-align: left;">Affiliates are everywhere, but it can be a pain to try and get their attention in order for them to promote your stuff! Meaning that you would probably have to sign up and register with forums all over the place to try and get at least one post in front of them, only to have it drop out the forums latest discussions in a matter of minutes, that&#8217;s even if the forums will let you post offers at all?</p>
<p style="text-align: left;">This is where this content network method works so well. My method is to find related and popular affiliate forums and websites, set up a PPC content campaign, enter in all the URL&#8217;s to those sites, write a couple of ads, and then launch that campaign with 2 ads to all those sites at the same time.</p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>STEP ONE:</strong></span></p>
<p style="text-align: left;">Head over to Google and search for &#8220;affiliate forums&#8221; hit Search.</p>
<p style="text-align: left;">Open Notepad or any text editor and have it ready.</p>
<p style="text-align: center;"><a href="http://www.flopidle.com/wp-content/uploads/2009/09/tom4.gif"><img class="size-full wp-image-694  aligncenter" title="URLS" src="http://www.flopidle.com/wp-content/uploads/2009/09/tom4.gif" alt="URLS" width="483" height="285" /></a></p>
<p style="text-align: left;">Now as im doing above copy and paste all the URL&#8217;s you can(the more the better) into your blank text editor file, then save it. Remember that you can repeat this process with other related search terms like&#8230;</p>
<p style="text-align: left;">&#8220;affiliate programs&#8221;</p>
<p style="text-align: left;">&#8220;affiliate marketing&#8221;</p>
<p style="text-align: left;">&#8220;affiliate opportunities&#8221;</p>
<p style="text-align: left;">&#8220;how to make money at home&#8221;</p>
<p style="text-align: left;">And so on.</p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>STEP TWO:</strong></span></p>
<p style="text-align: left;">Start a new PPC Content Campaign as you would any other, but when you get to add managed placements you want to select the manual option which allows you to paste in the URL&#8217;s you choose, and not Google&#8217;s choice.</p>
<p style="text-align: left;">Now paste in all the URL&#8217;s from your text editor into the &#8220;placements&#8221; box in your content campaign.</p>
<p style="text-align: left;">When you write your ad try and make it stand out as much as you can, conversational styles work better although I might have gone too far with these ads <img src='http://www.flopidle.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ..</p>
<p style="text-align: left;"><a href="http://www.flopidle.com/wp-content/uploads/2009/09/tom5.gif"><img class="aligncenter size-full wp-image-695" title="Content Ads" src="http://www.flopidle.com/wp-content/uploads/2009/09/tom5.gif" alt="Content Ads" width="222" height="194" /></a></p>
<p style="text-align: left;">
<p style="text-align: left;">I have an affiliate page for The Self Publishing System set up here -&gt;<a title="affiliate center" href="http://www.selfpublishingsystem.com/affiliates.html" target="_blank">Affiliate Center</a> , and this is what I use for the ads destination URL. So if a potential affiliate clicks on the ad they will be taken to the affiliate center where they can pick up banners and other promotional tools to help them sell it.</p>
<p style="text-align: left;">For a daily cost I will usually use about 15-25 dollars, and a cost per click will start off at around 25c. These numbers can be adjusted once you start to get stats back from your ads when they go live. But I very rarely hit the daily budget maximum because the CPC is allot lower than the search network, so even though you enter 25c a click you will probably see about 10-15c on average.</p>
<p style="text-align: left;">Check over all your options and once your are happy launch your PPC Content Campaign.</p>
<p style="text-align: left;"><span style="text-decoration: underline;"><strong>STEP THREE:</strong></span></p>
<p style="text-align: left;">After a while depending on what PPC Content Network you use(Google/Yahoo/Bing) you will start to see some results returned. Check over the stats to see what site ads are working the best, and also check your impressions to see if they are all displaying your ads? If not you may need to increase your CPC a little, but not by much.</p>
<p style="text-align: left;">Its also a good idea to split test different types of ads over your campaign, try new headlines, offers, anything you feel will be relevant to what affiliates are looking for in an offer. Test and Track;)</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Why Does This Work?</span></span></h2>
<p>The reason I think this works so well is because you are targeting a group of people on a site with your related offer, which means that the affiliates are able to see your offer from the site they are already on rather than have to search by themselves for one.</p>
<p>Also having an affiliate center set up with banners and promotional tools makes it so much easier for them to get started. They just click your ad to be taken to a page full of tools they can use to promote your product instantly, they hardly have to do a thing.</p>
<p>And last of all, if they start to promote your products and make sales they may go back to those forums and let others know too, which in turn could net you a few more affiliate via word of mouth.</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Content Is King</span></span></h2>
<p>Remember what I said in the beginning? You don&#8217;t have to just use Google, give Yahoo and Bing a try to see how their content networks differ from Google, you might be surprised?</p>
<p>You can still use the content network to try and sell a product yourself, if not only for the cheap CPC charges alone, but also because you know your offer is floating in front of possible buyers, if you pick your sites well this can be a goldmine of potential too.</p>
<p>This has been a long post, but I hope I got this method across without any problems. If you do have any questions let me know and i&#8217;ll be glad to answer them for you.</p>
<p>Good Luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/688/using-content-networks-to-find-affiliates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Operation Imac And Master Files</title>
		<link>http://www.flopidle.com/679/operation-imac-and-master-files/</link>
		<comments>http://www.flopidle.com/679/operation-imac-and-master-files/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 19:54:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[google spreadsheet]]></category>
		<category><![CDATA[master files]]></category>
		<category><![CDATA[operation imac]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=679</guid>
		<description><![CDATA[Back at last! First with the bad news, I did not meet my goal for Operation Imac by Sept 1st. So yes I&#8217;m still typing this post on my old computer. However I did manage to earn just around $1000 in the past couple of months so it&#8217;s not all doom and gloom, more like [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Back at last! First with the bad news, I did not meet my goal for <a href="http://www.flopidle.com/operation-apple-imac" target="_blank">Operation Imac</a> by Sept 1st. So yes I&#8217;m still typing this post on my old computer. However I did manage to earn just around $1000 in the past couple of months so it&#8217;s not all doom and gloom, more like a starting point to keep on improving.<span id="more-679"></span></strong></p>
<p>Realizing that I was not going to make my goal made me rethink what I was doing. When I started this all off I created niche site after niche site spreading my focus over such a large area that it was hard to concentrate on what I needed to be doing.</p>
<p>And in between that I was also creating my own products too, it was mayhem. So what I did was create a masterfile in excel that listed all my current niche sites, within those lists I created a few columns that included information like&#8230;</p>
<ul>
<li><strong>Domain Name</strong></li>
<li><strong>Expires</strong></li>
<li><strong>In Use</strong></li>
<li><strong>Type</strong></li>
<li><strong>Sales</strong></li>
<li><strong>Conversion Rate</strong></li>
<li><strong>Analytics Data</strong></li>
</ul>
<p><strong>Domain Name</strong>: This one is self explanatory.;)</p>
<p><strong>Expires:</strong> When does this domain expire? Meaning that if this niche site sucks but yet it has 3 years left to expire, I might consider a new site design/approach or even to try and sell it. But if the domain has a few weeks left, then maybe I&#8217;d consider letting it expire.</p>
<p><strong>In Use:</strong> Am I currently using this domain as a site? I have this amazing ability to just buy domain names with the idea to start a new site, but never do. Is it only me that does this?</p>
<p><strong>Type:</strong> This column is for if I do use this site what type is it? This could be a blog, e-commerce site, or even a sales page if its selling one of my own products.</p>
<p><strong>Sales:</strong> Has this site made any sales at all? This could represent some potential in this niche.</p>
<p><strong>Con/Rate:</strong> If it has made sales how is it converting? Do I need to get it mass traffic before I even earn a dollar.</p>
<p><strong>Analytics Data:</strong> First of all is analytics installed? If not then I need to add it to get any idea of what the site is doing. And second, by looking at the analytics data I would decide what I&#8217;d be dealing with if I did go ahead with this site.</p>
<p><em><span style="text-decoration: underline;">Other Info In The Master File</span></em></p>
<p>Other information I included in this masterfile were the usernames and passwords. When you have a few sites online you do tend to forget login details sometimes, especially when you don&#8217;t use them that much.</p>
<p>Once I had all this info in place I then color filled in the site lines that had made sales already,  I would use this as a quick reference to see what ones had potential right away. The domains that were not in use I colored in a darker color, this would represent that they are not even online yet, so either I did something with them, or I looked at the keywords and competition data again to make sure they are worth pursuing.</p>
<p>Now I had all this data in the masterfile it really made me see things I&#8217;ve overlooked, it gave me a birds eye view of the performance of my sites, which with just one glance I saw where best to focus my energy. This will now save me a ton of effort on a lost cause, or make me rethink a new plan for the domains/sites that are not performing.</p>
<p>The best thing about this masterfile is that it made me concentrate on a site I didn&#8217;t even bother with for weeks, but yet it still made a sale, so I put in more effort over the past few days and yesterday it made another sale! Without me taking this step back that sale may have never happened.</p>
<p>If only I started this the same time I started Operation Imac, who knows I may have been typing this on one;) I do recommend a masterfile to anyone with a few sites, you don&#8217;t have to have excel either, even notepad will do the trick. You could also try the FREE <a title="google spreadsheet" href="http://docs.google.com" target="_blank">Google Spreadsheet</a>.</p>
<p>Whatever you use give one a try, it does not take long and could give you an idea of where to best focus your energy too. Good Luck.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/679/operation-imac-and-master-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Affiliate Lead And Promotional Tools</title>
		<link>http://www.flopidle.com/670/affiliate-lead-and-promotional-tools/</link>
		<comments>http://www.flopidle.com/670/affiliate-lead-and-promotional-tools/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 14:55:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[affiliate center]]></category>
		<category><![CDATA[affiliate lead]]></category>
		<category><![CDATA[clickbank affiliate]]></category>
		<category><![CDATA[clickbank.com]]></category>

		<guid isPermaLink="false">http://www.flopidle.com/?p=670</guid>
		<description><![CDATA[I have an affiliate lead for you! No bias or anything like that but I did create an affiliate program for The Self Publishing System, so am currently looking for affiliates to help me promote it;) The affiliate program is currently set-up with Clickbank.com, and The Self Publishing System has just been entered into the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>I have an <a title="promotion tools to convert your affiliate lead" href="http://www.selfpublishingsystem.com/affiliates.html" target="_blank">affiliate lead</a> for you! No bias or anything like that but I did create an affiliate program for The Self Publishing System, so am currently looking for affiliates to help me promote it;)</strong></p>
<p><strong><span id="more-670"></span></strong>The affiliate program is currently set-up with <a title="affiliate lead program - Clickbank.com" href="http://flopidle.reseller.hop.clickbank.net" target="_blank">Clickbank.com</a>, and The Self Publishing System has just been entered into the marketplace listed at $67, so every <em>affiliate lead</em> that converts into a sale will earn each affiliate a 50% commission.</p>
<p>The best thing about promoting The Self Publishing System as an affiliate is its scope, not only does it appeal to authors, but you could promote it to anyone that writes their own material and wants to take it to a new level like bloggers, poets, in fact anyone that has an interest in info product creation.</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Affiliate Lead Tools</span></span></h2>
<p style="text-align: left;"><span style="color: #000000;">I tried to make it as easy as possible to help you get that affiliate lead</span> that converts into a sale. I put together an <a title="affiliate lead center - tools" href="http://www.selfpublishingsystem.com/affiliates.html" target="_blank">affiliate center</a> with a bunch of tools that you can use right away without doing any work yourself.</p>
<p style="text-align: left;">In the affiliate center you will find banners, promo videos, and pre-written tweets and Facebook updates as well an email broadcast to send out to your lists, simple copy and paste.</p>
<p style="text-align: left;">If you are a new affiliate the affiliate center also has details on how to sign up and start promoting The Self Publishing System via Clickbank, everything you need is all on the page to get you started right away and hopefully making those sales.</p>
<h2 style="text-align: center;"><span style="color: #800000;"><span style="text-decoration: underline;">Affiliate Feedback</span></span></h2>
<p style="text-align: left;">As an affiliate if you would also like to see something included in the affiliate center that would help you convert that affiliate lead into a sale<span style="color: #000000;"> </span>, then please let me know and I&#8217;ll work on adding that right away.</p>
<p style="text-align: left;">Also if there is any other feedback or questions you may have about this program it would be great to hear from you too. I &#8216;ll try my best to accommodate your needs to the best of my ability.</p>
<p style="text-align: left;">Please check out the link below to find out more about this program, and also to grab the <span style="text-decoration: underline;">FREE</span> promotional tools on that page. GOOD LUCK!;)</p>
<p style="text-align: center;"><a title="promo tools, banners, videos and more" href="http://www.selfpublishingsystem.com/affiliates.html" target="_blank">Take A Look At The Affiliate Center</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.flopidle.com/670/affiliate-lead-and-promotional-tools/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

