<?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>How To Blog &#187; PageRank</title>
	<atom:link href="http://bradtheblogboy.com/tag/pagerank/feed/" rel="self" type="application/rss+xml" />
	<link>http://bradtheblogboy.com</link>
	<description>blogging 102</description>
	<lastBuildDate>Fri, 14 May 2010 06:03:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Keywords In Your Post</title>
		<link>http://bradtheblogboy.com/seo/keywords-in-your-post/?source=rss</link>
		<comments>http://bradtheblogboy.com/seo/keywords-in-your-post/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 00:51:21 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[free tool]]></category>
		<category><![CDATA[good free tool]]></category>
		<category><![CDATA[good shape]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[meta keywords]]></category>
		<category><![CDATA[Nathan Rice]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[ScribeFire]]></category>
		<category><![CDATA[searc]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[semantic tags]]></category>
		<category><![CDATA[tag area]]></category>
		<category><![CDATA[tag name]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[title tags]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordsfinder]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=152</guid>
		<description><![CDATA[Reading time: 2 &#8211; 4 minutes
One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard how to blog post.  There is only one really good free tool and I reccomend using it every time you post.  Wordsfinder [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 4 minutes</p>
<p>One of the four most important aspects of writing a post is picking out the right keywords from the text.  This isn&#8217;t something often mention in your standard <strong><a href="http://www.bradtheblogboy.com">how to blog</a></strong> post.  There is only one really good free tool and I reccomend using it every time you post.  <a href="http://www.wordsfinder.com">Wordsfinder</a> will pick out what it sees as your best go to keywords based on a Google Search.  You simply cut and paste your text into the box and it spits out a list of your best keywords.  Copy the the ready to use list, and paste it into the custom field value box in the Wordpress write/edit post page and label the key as keywords.  Remember to save or publish after this step or they won&#8217;t be part of the post&#8217;s data.</p>
<p>The second method for adding keywords requires a bit of theme editing.  I first saw this technique on <a href="http://www.nathanrice.net/">Nathan Rice&#8217;s Blog</a>.  I suggest you read his entire series on how to do Wordpress SEO. This technique will add your tags as keywords.  If you are using good tags there is absolutely no reason you shouldn&#8217;t use them as keywords.  If you are using a not so good program to autotag like simple tags, you should avoid this method as it could cause google to think you are keyword stuffing. (Stuffing equals reduced pagerank) However if you use an intelligent tagging plugin that uses semantic tags, like Calaise archive or autotagger or my favorite Tagaroo you are in good shape.  Simply paste the keywords you got from Wordsfinder into the tag area and away you go.<span id="more-152"></span></p>
<p>This is where the theme editing needs to be done.<br />
In the header.php  add this below the title tags &lt;title&gt;&lt;/title&gt;<br />
<textarea cols="35" rows="3">&lt;br /&gt; &lt;?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php the_excerpt_rss(); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php csv_tags(); ?&gt;&lt;br /&gt; &lt;?php endwhile; endif; elseif(is_home()) : ?&gt;&lt;br /&gt; &lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?php bloginfo(&#8216;description&#8217;); ?&gt;&#8221; /&gt;&lt;br /&gt; &lt;?php endif; ?&gt;&lt;br /&gt; </textarea></p>
<p>In your functions.php add the following in the line above ?&gt;</p>
<p><textarea cols="35" rows="3">function csv_tags() {&lt;br /&gt;     $posttags = get_the_tags();&lt;br /&gt;     foreach((array)$posttags as $tag) {&lt;br /&gt;         $csv_tags .= $tag-&gt;name . &#8216;,&#8217;;&lt;br /&gt;     }&lt;br /&gt;     echo &#8216;&lt;meta name=&#8221;keywords&#8221; content=&#8221;&#8216;.$csv_tags.&#8217;&#8221; /&gt;&#8217;;&lt;br /&gt; }&lt;br /&gt; </textarea></p>
<p>Before undertaking this step I really reccomend you read <a href="http://www.nathanrice.net/blog/ultimate-guide-to-wordpress-seo-meta-keywords/">Nathan&#8217;s fine article</a> on the hows and whys of meta keywords.</p>
<p>Post 73 of 100 of <a href="”http://www.bradstinyworld.com”">Brad’s Tiny World</a> Scribefire Challenge.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/seo/keywords-in-your-post/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>What Are You Doing For Your Commentators</title>
		<link>http://bradtheblogboy.com/comments/what-are-you-doing-for-your-commentators/?source=rss</link>
		<comments>http://bradtheblogboy.com/comments/what-are-you-doing-for-your-commentators/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 04:11:30 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[comments]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[CommentLuv]]></category>
		<category><![CDATA[D-List]]></category>
		<category><![CDATA[Digg]]></category>
		<category><![CDATA[dofo]]></category>
		<category><![CDATA[dofollow]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[free pugin]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google juice]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[KeywordLuv]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[nofollow free]]></category>
		<category><![CDATA[noob]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[TypePad]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=83</guid>
		<description><![CDATA[Reading time: 3 &#8211; 4 minutes
Every blogger wants a reaction to their posts.  Whether or not everyone will admit, this is the whole reason we do what we do it.  It is no fun talking out of your ass if everyone ignores you.  So ask yourself what are you doing for those [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 3 &#8211; 4 minutes</p>
<p>Every blogger wants a reaction to their posts.  Whether or not everyone will admit, this is the whole reason we do what we do it.  It is no fun talking out of your ass if everyone ignores you.  So ask yourself what are you doing for those people?</p>
<p>I have put a lot of thought into this of late.  I know how to get a lot of diggs when I want, and a lot of traffic too.  What I was missing though were lots of comments.  I read what the big guys were saying.  Then I realized many of them were just talking out of their asses, because if it were really great advice they would be doing it themselves.  <span id="more-83"></span></p>
<p>When big name Blogger X loses a lot of credibility by saying remove the <a href="http://www.adammoss.co.uk/news/a-nofollow-free-blog/"><strong>nofollow</strong></a> from your comments, but doesn’t do it themselves.  I am taking a stand.  <a href="http://www.niessuh.com/commentluv-and-highlight-author-comments/"><strong>Nofollow</strong></a> is gone from all my comments as of now.  I am not stupid enough to not moderate my comments, but I am going totally nofollow free in the comments.  This is step one.  I recommend the <a href="http://www.ideapro.com/free-high-quality-backlinks-updated-list-of-277-free-web-directories-pagerank-8-to-3"><strong>nofollow</strong></a> <a href="http://i4p.biz/2008/07/create-your-own-wordpress-memberships-site-using-free-plugins/"><strong>free plugin</strong></a> for <a href="http://www.themelab.com/2008/07/17/home-free-wordpress-theme/"><strong>WordPress</strong></a>.  I also recommend using the <a href="http://thewordpressplugin.com/231/free-unique-wp-plugin-wordpress-plugin-nofollow-free/"><strong>nofollow</strong></a> from home and <a href="http://www.katagraphais.com/index.php/2008/06/to-wordpressorg-users-get-this-plug-in/"><strong>nofollow</strong></a> those dupes to keep <a href="http://blogd.com/wp/index.php/archives/3889"><strong>Google juice</strong></a> flowing the right direction from there.</p>
<p>Secondly give back to your commentators.  I not only have I made the link to their blog <strong><a href="http://www.darrensingleton.com/dofollow-blogging">nofollow</a> </strong>free, but using <a href="http://www.fiddyp.co.uk/commentluv-wordpress-plugin/"><strong>CommentLuv</strong></a> and <a href="http://www.scratch99.com/wordpress-plugin-keywordluv/"><strong>KeywordLuv</strong></a> the link to their last post is <strong><a href="http://www.explore-studios.com/2008/07/18/how-to-build-free-links-to-your-site/">nofollow</a> </strong>free.  This will pass along some serious <a href="http://speechwriting-ghostwriting.typepad.com/speechwriting_ghostwritin/2008/07/the-new-freelan.html"><strong>Google juice</strong></a> when you are indexed.</p>
<p>The third thing I am doing is providing subscribe to comments by email.  Your commentators will know when someone else posts a follow up comment.  Last but not least I am using <a href="http://meidell.dk/threadedcomments/">Brian’s Threaded Comments</a> plugin.  Commentators will be able to respond to each other.  If you run a political or religiously minded blog you will probably want to be careful how many levels deep you let that one run though.</p>
<p>Lastly I intend to do a better job than most of the big guys when it comes to interacting with you.  This is another area you see top name blogging gurus telling you to be social but never have anything to do with the people commenting on their own blogs.  I can promise you this if you comment and leave your site I will at the very least give your site a visit, which usually will translate into an ad click or comment of my own if your subject interests me.  Also be sure to check out the weekly <a href="http://bloggingfornoobs.com/blogging/commentluv-links-7-18-2008/"><strong>CommentLuv</strong> </a><a href="http://bloggingfornoobs.com/blogging/commentluv-links-7-18-2008/"><strong>Link List</strong></a> posted every Friday at <a href="http://bloggingfornoobs.com">Blogging For Noobs</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/comments/what-are-you-doing-for-your-commentators/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Get Over Your New PageRank!</title>
		<link>http://bradtheblogboy.com/rank-and-ratings/get-over-your-new-pagerank/?source=rss</link>
		<comments>http://bradtheblogboy.com/rank-and-ratings/get-over-your-new-pagerank/#comments</comments>
		<pubDate>Sun, 04 May 2008 11:59:56 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[Rank and Ratings]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blog Rank]]></category>
		<category><![CDATA[Blog Rating]]></category>
		<category><![CDATA[computer algorithm]]></category>
		<category><![CDATA[Duplicate Content]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[PageRank]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=79</guid>
		<description><![CDATA[Reading time: 2 &#8211; 2 minutes
Some of us went up, some of us didn’t and some of us went down. Thus is the nature of Google PageRank. While this is not wholly a point of vanity like star rank on MyLot, most of you are making a bigger deal of it than it is.
Secondly I [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 2 minutes</p>
<p class="MsoNormal">Some of us went up, some of us didn’t and some of us went down.<span> </span>Thus is the nature of Google PageRank.<span> </span>While this is not wholly a point of vanity like star rank on MyLot, most of you are making a bigger deal of it than it is.</p>
<p class="MsoNormal">Secondly I am sick and fucking tired of all the whining about how you worked so hard to write quality content and Google didn’t jump you as high as some of us, or in fact dropped your page rank.<span> </span>Get over it people, Google doesn’t give a damn about your witty repartee or insights.<span> </span>Google uses a computer algorithm to decide your page rank not a visit by Zagats.<span> </span>I can see that review now.<span> </span></p>
<blockquote>
<p class="MsoNormal">“Your layout is harsh on the eyes so only 3 stars there.<span> </span>Your content wording was smooth like pudding, but the double entendre was too much for a weak stomach making for only 2.5 stars.<span> </span>Your lack of proper nofollow techniques and duplicate content gave us the runs…<span id="more-60"></span></p>
</blockquote>
<p class="MsoNormal">In the end, content only matters to the people reading your blog.<span> </span>The mindless, brainless, tasteless, and unintelligent computers look at all the other stuff, weigh what they see, and spit out a number based on it.<span> </span>If your PageRank went down you have only yourself to blame for not doing a good enough job making it presentable to Google.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/rank-and-ratings/get-over-your-new-pagerank/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Keyword Marketing</title>
		<link>http://bradtheblogboy.com/seo/keyword-marketing/?source=rss</link>
		<comments>http://bradtheblogboy.com/seo/keyword-marketing/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 03:51:35 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Analytics]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Brad's Tiny World]]></category>
		<category><![CDATA[comma]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[fudging]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[Meta]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[notepad]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[text editor]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Wait]]></category>
		<category><![CDATA[widget]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordsfinder]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=51</guid>
		<description><![CDATA[Reading time: 2 &#8211; 3 minutes
One of the best techniques for really driving traffic to your site  is the use of keywords and knowing just how to use them  Wait! Wait! Stop!  I know some of you are thinking other blogs say keywords are dead and don&#8217;t matter to your PageRank or this or that [...]]]></description>
			<content:encoded><![CDATA[<p>Reading time: 2 &#8211; 3 minutes</p>
<p>One of the best techniques for really driving traffic to your site  is the use of keywords and knowing just how to use them  Wait! Wait! Stop!  I know some of you are thinking other blogs say keywords are dead and don&#8217;t matter to your PageRank or this or that program because they can be manipulated.  That is true to a point.</p>
<p>What isn&#8217;t mentioned often enough is keywords do still matter and that Google isn&#8217;t the only game in town. Search engines are getting better about seeing who is fudging their keywords and actually looking for them in the text of your post.  You can&#8217;t get away with just picking out popular keywords, plugging them in and thinking you are beating the system.  Other search you can still get away with that on, but it isn&#8217;t to your benefit even there.</p>
<p>So how do we pick a search engine oh mighty guru?  There are a couple of methods.  There are plugins of course which will do it for you automatically.  The best ones cost money though and I haven&#8217;t had very good luck with free ones using WordPress 2.5.  My preferred method is a little more time consuming but seems to produce pretty good results if you look at my <a href="http://feedjit.com/">Feedjit</a> widget.</p>
<p>I use the site wordsfinder.com, enter the text, usually cut straight from word, and tell it to search for my keywords.  It usually gives me a nice long list and I cut highlight copy into notepad for cleaning it up.  First, this will pick out any horribly misspelled words if you didn&#8217;t already spell check the text, so correct them before posting.  According to <a href="http://www.highrankings.com/metakeyword">highestranking.com</a> you want to comma separate your terms or phrases, but don&#8217;t leave a space.  Using notepad or any text editor you can quickly do that, then simply cut them and paste them into your keywords field in WordPress and push the add custom field button and bam you have hot keywords.</p>
<p>What I said about the <a href="http://feedjit.com/">feedjit</a> widget is quite true.  If you look at my other blogs especially you will find a high number of the incoming visitors are coming from Google via keyword searches.  Check out <a href="http://bradsotherblog.com">The Other Blog</a> and <a href="http://bradstinyworld.com/">Brad&#8217;s Tiny World</a> to see what I mean.  You can also use Google Analytics to see your actual stats and make decisions about the kind of posts you want to be making as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/seo/keyword-marketing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Link Exchange &#8211; Stick Post</title>
		<link>http://bradtheblogboy.com/traffic-building/link-exchange/link-exchange/?source=rss</link>
		<comments>http://bradtheblogboy.com/traffic-building/link-exchange/link-exchange/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 18:54:26 +0000</pubDate>
		<dc:creator>Blogboy</dc:creator>
				<category><![CDATA[Link Exchange]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[BlogSpot]]></category>
		<category><![CDATA[Brad Hart]]></category>
		<category><![CDATA[Brad's Tiny World]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[Hart]]></category>
		<category><![CDATA[How To Blog]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Mailboxmoney]]></category>
		<category><![CDATA[MIL]]></category>
		<category><![CDATA[millionaire]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[Online Income]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Reciprocal]]></category>
		<category><![CDATA[Reciprocal Link Exchange]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bradtheblogboy.com/?p=14</guid>
		<description><![CDATA[Reading time: 4 &#8211; 6 minutes
Featured links


]]></description>
			<content:encoded><![CDATA[<p>Reading time: 4 &#8211; 6 minutes</p>
<p class="linkman"><b>Featured links</b></p>
<table border="0" cellspacing="1" cellpadding="1">
<tr>
<td valign="top" class="linkman"><img src="http://open.thumbshots.org/image.pxf?url=http%3A%2F%2Fbradtheblogboy.com" style="vertical-align: middle;" border="0" onload="if (this.width>50) this.border=1;&#8221; />&nbsp;</td>
<td valign="top" class="linkman" title="Google PageRank: 0/10"><img src="img/pr0.gif" width="40" height="5" alt="Google PageRank: 0/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://bradtheblogboy.com?source=rss" target="_blank" class="linkman" ><b>Brad The Blog Boy</b></a>&nbsp;<span class="linkmanURL">-&nbsp;http://bradtheblogboy.com</span><br/>A Blunt Blog About Blogging.<br />&nbsp;</p>
</td>
</tr>
</table>
<p class="linkman"><b>Reciprocal links</b></p>
<table border="0" cellspacing="1" cellpadding="1">
<tr>
<td valign="top" class="linkman" title="Google PageRank: 1/10"><img src="img/pr1.gif" width="40" height="5" alt="Google PageRank: 1/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://www.bradstinyworld.com/" target="_blank" class="linkman" >Brad&#8217;s Tiny World</a>&nbsp;<span class="linkmanURL">-&nbsp;http://www.bradstinyworld.com/</span><br/>Current Events and Technology</p>
</td>
</tr>
<tr>
<td valign="top" class="linkman" title="Google PageRank: 0/10"><img src="img/pr0.gif" width="40" height="5" alt="Google PageRank: 0/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://bradsotherblog.com" target="_blank" class="linkman" >The Other Blog</a>&nbsp;<span class="linkmanURL">-&nbsp;http://bradsotherblog.com</span><br/>Brad Hart&#8217;s Pop Culture Blog!</p>
</td>
</tr>
<tr>
<td valign="top" class="linkman" title="Google PageRank: 2/10"><img src="img/pr2.gif" width="40" height="5" alt="Google PageRank: 2/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://mailboxmoney.blogspot.com" target="_blank" class="linkman" >Mailboxmoney</a>&nbsp;<span class="linkmanURL">-&nbsp;http://mailboxmoney.blogspot.com</span><br/>A blog about making money online</p>
</td>
</tr>
<tr>
<td valign="top" class="linkman" title="Google PageRank: 0/10"><img src="img/pr0.gif" width="40" height="5" alt="Google PageRank: 0/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://www.experiments-experiments.blogspot.com" target="_blank" class="linkman" >Experiments</a>&nbsp;<span class="linkmanURL">-&nbsp;http://www.experiments-experiments.blogspot.com</span><br/>This website talks about blogging and making money online</p>
</td>
</tr>
<tr>
<td valign="top" class="linkman" title="Google PageRank: 2/10"><img src="img/pr2.gif" width="40" height="5" alt="Google PageRank: 2/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://arc-earn-online.blogspot.com/" target="_blank" class="linkman" >ARC&#8217;s Earn Online</a>&nbsp;<span class="linkmanURL">-&nbsp;http://arc-earn-online.blogspot.com/</span><br/>The purpose of starting this Blog is primarily try out all possible avenues in making money online and share the status and the outcome here.I am not here to make you millionaire but I could guide you</p>
</td>
</tr>
<tr>
<td valign="top" class="linkman" title="Google PageRank: 0/10"><img src="img/pr0.gif" width="40" height="5" alt="Google PageRank: 0/10" border="0" style="vertical-align: middle;" />&nbsp;</td>
<td valign="top" class="linkman">
<p class="linkman"><a href="http://makeonlineincome.wordpress.com" target="_blank" class="linkman" >Make Online Income</a>&nbsp;<span class="linkmanURL">-&nbsp;http://makeonlineincome.wordpress.com</span><br/>Learn to make a full time income online for no charge.</p>
</td>
</tr>
</table>
<p class="linkman"><strong>Submit your website</strong></p>
<p class="linkman"><span id="more-20"></span></p>
<p><ins datetime="2008-04-01T23:24:29+00:00"><em>Please add a link to our website <a href="http://www.bradtheblogboy.com">http://bradtheblogboy.com</a> to your links page before<br />
submitting this form!</em></ins></p>
<form action="http://www.bradtheblogboy.com/linkman14/addlink.php" method="post">
<table border="0">
<tbody>
<tr>
<td><strong>Your name:</strong></td>
<td>
<input maxlength="50" name="name" size="40" type="text" /></td>
</tr>
<tr>
<td><strong>E-mail:</strong></td>
<td>
<input maxlength="50" name="email" size="40" type="text" /></td>
</tr>
<tr>
<td><strong>Website title:</strong></td>
<td>
<input maxlength="50" name="title" size="40" type="text" /></td>
</tr>
<tr>
<td><strong>Website URL:<strong></strong></strong></td>
<td>
<input maxlength="100" name="url" size="40" type="text" value="http://" /></td>
</tr>
<tr>
<td><strong>URL with reciprocal link:</strong></td>
<td>
<input maxlength="100" name="recurl" size="40" type="text" value="http://" /></td>
</tr>
</tbody>
</table>
<p><ins datetime="2008-04-01T23:24:29+00:00"><strong>Website description:</strong></ins></p>
<p><ins datetime="2008-04-01T23:24:29+00:00"></ins></p>
<p><ins datetime="2008-04-01T23:24:29+00:00"></ins></p>
<p><ins datetime="2008-04-01T23:24:29+00:00"></ins></p>
<p><ins datetime="2008-04-01T23:24:29+00:00"><br />
<input maxlength="200" name="description" size="60" type="text" />
<input type="submit" value="Add link" /></ins></p>
</form>
<p>Your link can immediately be seen on the main <a href="http://www.bradtheblogboy.com/linkman14/links.php">Link Exchange Page</a><ins datetime="2008-04-01T23:24:29+00:00"><a href="http://www.bradtheblogboy.com/linkman14/links.php"> </a></ins></p>
<p><ins datetime="2008-04-01T23:24:29+00:00">I will give a free 60 Day Featured Link on my side bar to anyone who tell help me autoload this links table using the free php script <a href="http://www.phpjunkyard.com/php-link-manager.php">PHP Link manager </a>1.4 from <a href="http://www.phpjunkyard.com/">PHP Junkyard</a>. </ins></p>
]]></content:encoded>
			<wfw:commentRss>http://bradtheblogboy.com/traffic-building/link-exchange/link-exchange/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
