<?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>Web Cash &#187; website</title>
	<atom:link href="http://www.earn-web-cash.com/tag/website/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.earn-web-cash.com</link>
	<description>Writing, Designing, and Making Money Online</description>
	<lastBuildDate>Sun, 04 Dec 2011 22:52:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>How to Integrate an RSS Feed Into Your Site with Simple XML</title>
		<link>http://www.earn-web-cash.com/2008/02/09/simple-xml-rss-feed/</link>
		<comments>http://www.earn-web-cash.com/2008/02/09/simple-xml-rss-feed/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 23:53:58 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/09/simple-xml-rss-feed/</guid>
		<description><![CDATA[Practically every site today has an RSS feed. Now, you could be like everyone else and simply use this as a way to read information as it&#8217;s published. Or, you could use RSS for what&#8217;s intended for &#8211; content syndication. With Simple XML, it&#8217;s a piece of cake to use an RSS feed to add [...]]]></description>
			<content:encoded><![CDATA[<p>Practically every site today has an RSS feed.  Now, you could be like everyone else and simply use this as a way to read information as it&#8217;s published.</p>
<p>Or, you could use RSS for what&#8217;s intended for &#8211; content syndication.  With Simple XML, it&#8217;s a piece of cake to use an RSS feed to add a list of links to relevant articles on your page.<br />
<span id="more-105"></span></p>
<h5>What Are RSS Feeds and XML Files?</h5>
<p>Hopefully you know what an XML file and an RSS feed is.  If not, here&#8217;s the quick and dirty explanation.</p>
<p>An XML file is a special way to store information.  All of the information is wrapped in tags &#8211; kind of like HTML.  However, instead of using this to format the output, this is used to tell the reader what the information means.</p>
<p>So, for example, a <code>&lt;link&gt;</code> tag would probably describe a link.</p>
<p>XML was created to allow information to be easily ported between platforms and systems.  An RSS feed is a special type of XML file to help reach that goal.  Most websites (including almost all blogs), publish an RSS feed that is simply an XML file containing the latest few entries on the website.</p>
<p>An RSS feed also has a standard structure &#8211; which is why we can easily build a script that can parse <strong>any</strong> valid RSS feed and add the links to your site.</p>
<h5>Getting Started with Simple XML</h5>
<p>Before SimpleXML, you had to build your own XML parser to work with PHP and XML files.  This was possible, but it meant a lot of overhead &#8211; so it wasn&#8217;t a good idea for small projects.</p>
<p>With SimpleXML, you can load any XML file into PHP as a specially structured object.  The object&#8217;s structure mirrors the XML file.  So, if there&#8217;s a <code>&lt;item&gt;</code> tag, it creates an object with name &#8220;item.&#8221;  It then creates children objects of every tag <strong>inside</strong> that item tag.</p>
<p>To load an XML file into a SimpleXML object, you simply use this function call.  Run this entire script to see what the SimpleXML object looks like after it&#8217;s loaded.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://www.dzone.com/links/feed/frontpage/rss.xml&quot;</span><span style="color: #339933;">;</span>
<span style="color: #666666; font-style: italic;">//  That's the DZone RSS Feed</span>
&nbsp;
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_file</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">var_dump</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h5>What&#8217;s In an RSS Feed, and How Do We Use It?</h5>
<p>If you ran that script, you should see the guts of an RSS feed.  I&#8217;d suggest you view the source code of the output page, since it&#8217;ll be formatted nicely for you.</p>
<p>Like I mentioned before, RSS feeds have a standard structure so that apps can predictably interact with them.  This is the basic structure you should see inside the DZone RSS feed.</p>

<div class="wp_syntax"><div class="code"><pre class="xml" style="font-family:monospace;">//  Some random stuff up top
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;channel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>  // This parent tag holds all the page information
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;item<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>  //  There's one item per page listed in the feed
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> ... <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;link<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> ... <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/link<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> ... <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/description<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
    <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;pubDate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> ... <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/pubDate<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/item<span style="color: #000000; font-weight: bold;">&gt;</span></span></span>
  //  You could have a lot more <span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;item<span style="color: #000000; font-weight: bold;">&gt;</span></span></span> tags here
<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/channel<span style="color: #000000; font-weight: bold;">&gt;</span></span></span></pre></div></div>

<p>All of this information is nicely placed in our SimpleXML object for us to manipulate.</p>
<p>The entire channel (all of the children tags inside the channel tag) is stored in the &#8216;channel&#8217; object, which is a child of the larger &#8216;feed&#8217; object that we created earlier ($feed).</p>
<p>You can access the channel like this.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">var_dump</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>If there were multiple channels, then &#8216;channel&#8217; wouldn&#8217;t be a single object &#8211; it would be an array of objects.  This is the case with the &#8216;item&#8217; tags.  There are a lot of items, so they are stored in an array &#8211; which is a child object of the &#8216;channel.&#8217;</p>
<p>You can access the items like this.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">var_dump</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span>n<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Finally, the individual item holds most of the information we want.  It has children named &#8216;pubDate,&#8217; &#8216;title,&#8217; and &#8216;link&#8217; (along with a few other optional parameters).</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">pubDate</span><span style="color: #339933;">;</span></pre></div></div>

<h5>So How Is This Useful to Us?</h5>
<p>As you may have noticed, each item consists of the information you need to make a link back to it.  The item consists of a title, a URL, a pubDate, and a description.  You could use any combination of these that you feel is useful &#8211; but here&#8217;s an example of how to create a link to an article.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;a href=&quot;'</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&quot;&gt;'</span> <span style="color: #339933;">.</span>
  <span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'&lt;/a&gt;'</span><span style="color: #339933;">;</span></pre></div></div>

<p>And that&#8217;s all there is to it.  You could spruce it up by adding a date underneath the link.  Or you could add a short excerpt of the description.</p>
<h5>What If I Want to Include All of the Links?</h5>
<p>I suppose adding one link is kind of silly.  With a loop, we can easily iterate through the item[] array and output a link for every item in the RSS feed.</p>
<p>For good measure, we&#8217;ll also format it nicely in an unordered list.  From there, you can add some styling and it&#8217;ll fit right into the sidebar of your page.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//  Load the XML file into a Simple XML object</span>
<span style="color: #000088;">$filename</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://www.dzone.com/links/feed/frontpage/rss.xml&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$feed</span> <span style="color: #339933;">=</span> <span style="color: #990000;">simplexml_load_file</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$filename</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//  Iterate through the list and create the ul</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;ul&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$feed</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">channel</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">item</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$item</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;li&gt;&lt;a href='&quot;</span> <span style="color: #339933;">.</span> <span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">link</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;'&gt;&quot;</span> <span style="color: #339933;">.</span>
    <span style="color: #000088;">$item</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">title</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">&quot;&lt;/a&gt;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/ul&gt;&quot;</span><span style="color: #339933;">;</span></pre></div></div>

<p>There ya have it.  A semantically structured list, built from a remote RSS feed.  All in a couple lines of code.</p>
<p>You could of course separate this out into a function, and then pass a filename (and perhaps a limiting # of items to print) to your function.  The function would return a string with the html list, or output it directly (depending on your preference).</p>
<p><strong>Word of Caution:</strong>  Remember that you don&#8217;t own content just because it is published in an RSS feed.  The author still does.</p>
<p>I would assume that it&#8217;s fair game and free of copyright issues to print links to the original author&#8217;s site.  However, some authors publish their entire articles in their RSS feeds.  <strong>Do not</strong> re-publish the entire article.  That is copyright infringement, it is illegal, and you can get in a lot of trouble.  Not to mention it&#8217;s highly unethical.</p>
<p>With that in mind, happy syndicating!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/09/simple-xml-rss-feed/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Participate in Forums to Create Tons of Backlinks</title>
		<link>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/</link>
		<comments>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 23:55:22 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[backlink]]></category>
		<category><![CDATA[forum]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/02/forums-backlinks/</guid>
		<description><![CDATA[Ahh, the never ending quest for backlinks.

There are plenty of places to look for free backlinks - some of better quality than others.  One trick you can use to build up a decent collection of backlinks is to regularly post on forums in your niche.]]></description>
			<content:encoded><![CDATA[<p>Ahh, the never ending quest for backlinks.</p>
<p>There are plenty of places to look for free backlinks &#8211; some of better quality than others.  One trick you can use to build up a decent collection of backlinks is to regularly post on forums in your niche.<br />
<span id="more-96"></span></p>
<h5>Not All Backlinks Are Created Equally</h5>
<p>Before you go about posting on every forum you can find, understand that not all backlinks are of equal value.</p>
<p>Some forums (as well as blog comment areas) use the <code>rel="nofollow"</code> attribute in links.  This means that Google (and possibly other search engines) ignores the link when crawling and calculating search engine placement.</p>
<p>Some other search engines &#8211; like Yahoo &#8211; may still count these.  There&#8217;s no certain way to know how valuable they are, so I wouldn&#8217;t just ignore them.  However, if you have a choice you should steer your time and effort to forums where the links you create do <strong>not</strong> contain the <code>rel="nofollow"</code> attribute.</p>
<h5>Where Do I Put the Links?</h5>
<p>On most forums, it&#8217;s considered bad form to just run around posting links to your site.  Be sure to read the rules for the forum.  Some forums may allow you to link to your site <strong>if</strong> the article directly relates to a question someone else asked.</p>
<p>However, there are two places you&#8217;ll generally be able to put backlinks.</p>
<p>In your profile, you should be able to set a &#8220;Homepage&#8221; value.  Always do this.  On some forums &#8211; like <a href="http://www.programmingtalk.com/index.php">Programming Talk</a> &#8211; each post contains a link to your homepage by your name.</p>
<p>You can also create a signature.  This appears at the end of every post you make, and it is typically considered ok to place self-promoting links here.  Some forums will have special rules about this &#8211; so be sure to read them.</p>
<p>Once you place links in your signature, make them count.  This is a great place to start doing SEO.  If you already have a link to your homepage underneath your name, I would use the signature to link to some deeper pages &#8211; like content categories.  Give the links targeted text (like &#8220;PHP Tutorials&#8221; or &#8220;Web Design Tips&#8221;).</p>
<h5>A Few Forums to Start With</h5>
<p>Since you&#8217;re a webmaster, you&#8217;ll always find something interesting to talk about on webmaster forums.  Here are a few well-trafficked forums that I frequent.</p>
<ul>
<li><a href="http://www.daniweb.com/">DaniWeb</a> &#8211; I think signature links here are rel=nofollow, but it&#8217;s a good forum</li>
<li><a href="http://forums.digitalpoint.com/">Digital Point</a> &#8211; Lots of traffic, and links are followed</li>
<li><a href="http://www.programmingtalk.com/index.php">Programming Talk</a> &#8211; Decent traffic, and links are followed</li>
<li><a href="http://www.sitepoint.com/forums/">Site Point</a> &#8211; Lots of traffic, and links are followed</li>
</ul>
<h5>Start Posting!</h5>
<p>What are you waiting for?  Get out there and start posting!</p>
<p>If your website isn&#8217;t about websites, then you should probably search out some other forums based on your niche as well.</p>
<p>Forum backlinks aren&#8217;t going to make your website a success by themselves, but they are a good stepping stone to better SEO.  You can use them to quickly build up backlinks for a new site until you start getting better backlinks from other sites.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/02/forums-backlinks/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Submit Graphics Tutorials to GimpTutorials.com for Traffic</title>
		<link>http://www.earn-web-cash.com/2008/02/01/gimp-tutorials/</link>
		<comments>http://www.earn-web-cash.com/2008/02/01/gimp-tutorials/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 23:09:10 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/02/01/gimp-tutorials/</guid>
		<description><![CDATA[If you write tutorials on your website or blog, then niche tutorial directories are a great source of traffic.  I list most of my php tutorials with good-tutorials and get a nice <a href="http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/">burst of traffic</a> with each new listing.

Another site I've found useful is <a href="http://www.gimp-tutorials.com" title="Gimp Tutorial Site">Gimp Tutorials</a>.  They're a great place to list any graphics tutorials that you write for the GIMP graphic design program.]]></description>
			<content:encoded><![CDATA[<p>If you write tutorials on your website or blog, then niche tutorial directories are a great source of traffic.  I list most of my php tutorials with good-tutorials and get a nice <a href="http://www.earn-web-cash.com/2008/01/18/good-tutorialscom-niche-article-sites-to-help-increase-traffic/">burst of traffic</a> with each new listing.</p>
<p>Another site I&#8217;ve found useful is <a href="http://www.gimp-tutorials.com" title="Gimp Tutorial Site">Gimp Tutorials</a>.  They&#8217;re a great place to list any graphics tutorials that you write for the GIMP graphic design program.<br />
<span id="more-92"></span><br />
In case you don&#8217;t know what GIMP is, head to the <a href="http://www.gimp.org/" title="Gimp Homepage">Gimp</a> homepage.  It&#8217;s a free, open source graphic editing suite &#8211; similar in many ways to the expensive, proprietary Adobe Photoshop.</p>
<p><a href="http://www.gimp-tutorials.com" title="Gimp Tutorial Site">Gimp Tutorials</a> is another niche directory where you can submit appropriate tutorials for listing.  In this case, appropriate means just about anything related to creating or editing an image in Gimp.</p>
<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/02/gimp-tutorials-analytics.png' title='Screenshot of Analytics Data for Referrals from Gimp Tutorials'><img class="alignright" src='http://www.earn-web-cash.com/wp-content/uploads/2008/02/gimp-tutorials-analytics.thumbnail.png' alt='Screenshot of Analytics Data for Referrals from Gimp Tutorials' /></a>I wrote a very basic tutorial to show users <a href="http://www.earn-web-cash.com/2008/01/24/how-to-create-a-gradient-background-image-in-gimp/" title="GIMP Gradient Image Tutorial">how to create a gradient background image in GIMP</a>.  Since I submitted the tutorial to Gimp Tutorials, slightly less than week ago, they&#8217;ve sent me 200 visits.</p>
<p>There was a brief spike on the first day, and I&#8217;ve been getting a steady stream of 20-30 visitors each day after that.</p>
<p>There doesn&#8217;t appear to be a lot of turnover on the site, so my tutorial is still listed third on the front page.  That&#8217;s after five days.  That&#8217;s a pretty lengthy period of exposure &#8211; considering that others sites (like Good Tutorials) turnover in about a day.</p>
<p>So if you write any tutorials for GIMP, don&#8217;t hesitate to submit them here.  It&#8217;s a good way to drive a few extra users to your latest article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/02/01/gimp-tutorials/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Use PHP To Dynamically Resize an Image</title>
		<link>http://www.earn-web-cash.com/2008/01/30/resize-images-php/</link>
		<comments>http://www.earn-web-cash.com/2008/01/30/resize-images-php/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 01:26:57 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/30/resize-images-php/</guid>
		<description><![CDATA[One of the most annoying things about working with images is getting them into the right size. Screenshots start out huge &#8211; and you need to resize them to an appropriate size for your website. Some blogs automatically resize the pictures for you into a thumbnail &#8211; like the image to the right. What if [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/01/dzone-screenshot.png' title='Screenshot of a Dzone Page'><img class="alignright" src='http://www.earn-web-cash.com/wp-content/uploads/2008/01/dzone-screenshot.thumbnail.png' alt='Screenshot of a Dzone Page' /></a>One of the most annoying things about working with images is getting them into the right size.  Screenshots start out huge &#8211; and you need to resize them to an appropriate size for your website.</p>
<p>Some blogs automatically resize the pictures for you into a thumbnail &#8211; like the image to the right.  What if you want the image a different size, though?  You could allow the browser to resize it for you, or &#8211; better yet &#8211; write your own php script to resize the image dynamically.<br />
<span id="more-87"></span></p>
<h5>Why You Shouldn&#8217;t Let the Browser Resize Images</h5>
<p><img src='http://www.earn-web-cash.com/wp-content/uploads/2008/01/dzone-screenshot.png' class='alignright' style='width: 200px; height: 150px'; />Look at the original picture &#8211; the small thumbnail created by WordPress.  Notice how large it is &#8211; 13.9kb.  When WordPress resizes the image, it also reduces the file size.  If I were to include the fullsize image and resize it using css height and width attributes, the file size would <strong>not</strong> be cut down.  </p>
<p>Want proof?  Look at the second image to the right &#8211; that&#8217;s simply resized by the browser.  It&#8217;s a whopping 284.21kb.</p>
<p><img src='/scripts/resize-image.php?image=http://www.earn-web-cash.com/wp-content/uploads/2008/01/dzone-screenshot.png' class='alignright' />If we write our own php script to resize the image dynamically, we can control both the image size <strong>and</strong> the file size.  Check out the third image to the right &#8211; which was resized with a php script.  You&#8217;ll notice that it looks nicer too &#8211; the browser isn&#8217;t designed to resize images.</p>
<h5>Using the PHP GD Library to Resize the Image</h5>
<p>So how do we do this?  We&#8217;re going to make use of the PHP GD library to manipulate the image, and a $_GET parameter to tell it which image to re-size.</p>
<p>Let&#8217;s walk through using the GD library to re-size an image.  Then we&#8217;ll see how to include that in your HTML to actually do the resizing for you.</p>
<p>First, we need to open up the original file and get it&#8217;s size and type characteristics.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$src_img</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatefrompng</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'image.png'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$srcsize</span> <span style="color: #339933;">=</span> <span style="color: #990000;">getimagesize</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'image.png'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><code>imagecreatfrompng()</code> creates an image object and stores it in $src_image.  If the file was a different type we could replace &#8220;png&#8221; with &#8220;jpeg&#8221; or &#8220;gif.&#8221;  <code>getimagesize()</code> stores an array in $srcsize that contains the width of the image ($srcsize[0]), the height of the image ($srcsize[1]), and the filetype of the image ($srcsize[2]).</p>
<p>Now we need to create new dimensions for the new image and actually create an image.  We&#8217;ll resize it to 200 pixels wide &#8211; and then adjust the height to maintain the ratio.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$dest_x</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">200</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$dest_y</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">200</span> <span style="color: #339933;">/</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$dst_img</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatetruecolor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dest_x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dest_y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>The calculations should be self explanatory.  <code>imagecreatetruecolor()</code> creates a new image object for us with the given dimensions &#8211; which we will soon fill in with our resized image.</p>
<p>The next step is to place the resized image into <code>$dst_img</code> and output the image as Image content.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">imagecopyresampled</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #339933;">,</span> <span style="color: #000088;">$src_img</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> 
    <span style="color: #000088;">$dest_x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dest_y</span><span style="color: #339933;">,</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;content-type: image/png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">imagepng</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p><code>imagecopyresampled()</code> copies an image ($dst_img) into a new image ($src_img) with a set of given attributes (including our sizes).  The &#8220;Header&#8221; line tells the browser that this is an image &#8211; so that it&#8217;s not displayed as a bunch of gibberish.  Finally, the <code>imagepng()</code> function actually displays the image.</p>
<p>Now, we need to clean up and destroy the image objects.  Otherwise, we could end up sapping a lot of memory from the server.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">imagedestroy</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$src_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">imagedestroy</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<h5>Displaying the Script in HTML</h5>
<p>If you load the script directly, you should simply see the image.  It creates an image resource and displays it in the browser &#8211; as if &#8220;resize-image.php&#8221; was really &#8220;image.png.&#8221;</p>
<p>Therefore all we need to do to include this new image in an HTML page is use the php script as the <code>src</code> attribute of our <code>&lt;img&gt;</code> tag.  Like so&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'resize-image.php'</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>The script will execute, create an image, and use that as the <code>src</code>.</p>
<p>The last thing we need to do is modify our script so that we can pass it some information.  </p>
<p>It wouldn&#8217;t do much good if we had to write a new php script for every image we wanted to resize.  Instead, we can use the $_GET array to send a variable (the image filename) to our image resizing script.</p>
<p>Here&#8217;s the entire image resizing script, with the $_GET variable used for the filename.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">//  Create source image and dimensions</span>
<span style="color: #000088;">$src_img</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatefrompng</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'image'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$srcsize</span> <span style="color: #339933;">=</span> <span style="color: #990000;">getimagesize</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'image'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$dest_x</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">200</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$dest_y</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span><span style="color: #cc66cc;">200</span> <span style="color: #339933;">/</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$dst_img</span> <span style="color: #339933;">=</span> <span style="color: #990000;">imagecreatetruecolor</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dest_x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dest_y</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//  Resize image</span>
<span style="color: #990000;">imagecopyresampled</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #339933;">,</span> <span style="color: #000088;">$src_img</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dest_x</span><span style="color: #339933;">,</span> <span style="color: #000088;">$dest_y</span><span style="color: #339933;">,</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$srcsize</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//  Output image</span>
<span style="color: #990000;">header</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;content-type: image/png&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">imagepng</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">//  Destroy images</span>
<span style="color: #990000;">imagedestroy</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$src_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">imagedestroy</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$dst_img</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>To use this, you need to slightly modify your HTML and add an &#8220;image&#8221; parameter to the URL of your script.  Like so&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'resize-image.php?image=image.png'</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>There ya go!  Now you can resize images on the fly.</p>
<h5>Next Steps to Take&#8230;</h5>
<p>This is of course a basic introduction to the topic.  You can add a lot of functionality to resize-image.php.</p>
<p>For example, you could take extra parameters &#8211; like a width and/or height.  You might also want to include a bunch of error checking &#8211; make sure the file exists, make sure the new dimensions are appropriate, etc.  </p>
<p>You could also use a <code>switch()</code> statement to open different types of images &#8211; based on the contents of $srcsize[2].  Remember, you can use the GD library to do more than work with .png files.  By replacing &#8216;png&#8217; with &#8216;jpeg&#8217; or &#8216;gif&#8217; you can use the same functions to work with these file types.  For example, <code>imagecreatefromjpeg</code> is equivalent to <code>imagecreatefrompng</code>.</p>
<p>In the near future, I plan on extending this example into a full-fledged script for immediate download and use.  So stay tuned &#8211; and leave any comments with suggestions for what the script should be able to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/30/resize-images-php/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>What&#8217;s the Best Choice, Combination, and Placement of Adsense Ads?</title>
		<link>http://www.earn-web-cash.com/2008/01/29/adsense-trends/</link>
		<comments>http://www.earn-web-cash.com/2008/01/29/adsense-trends/#comments</comments>
		<pubDate>Tue, 29 Jan 2008 21:40:56 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[ads]]></category>
		<category><![CDATA[AdSense]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[earnings]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/29/adsense-trends/</guid>
		<description><![CDATA[<p>If you operate a website (like this blog), Google Adsense is probably one of your main streams of revenue.  Although you may eventually outgrow Adsense, chances are you'll have used it at some point.</p>

<p>While looking through my Adsense stats, I noticed an odd trend.  This trend suggested a few things about monetizing a site through Adsense - questions that I don't have an answer for yet, but that I will be looking for.</p>]]></description>
			<content:encoded><![CDATA[<div class="alignright"><script type="text/javascript"><!--
google_ad_client = "pub-2399151883698113";
//125x125 Adsense Referral Button
google_ad_slot = "1937689390";
google_ad_width = 125;
google_ad_height = 125;
google_cpa_choice = ""; // on file
//--></script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>
<p>If you operate a website (like this blog), Google Adsense is probably one of your main streams of revenue.  Although you may eventually outgrow Adsense, chances are you&#8217;ll have used it at some point.</p>
<p>While looking through my Adsense stats, I noticed an odd trend.  This trend suggested a few things about monetizing a site through Adsense &#8211; questions that I don&#8217;t have an answer for yet, but that I will be looking for.</p>
<p><span id="more-85"></span></p>
<p>On this and my other site (<a href="http://www.teachbabel.com" title="Babel - Bringing Teachers Together">Babel</a>), I use a few main types of ads &#8211; a horizontal image banner, a skyscraper with text and images, and square boxes with text and images.</p>
<p>It&#8217;s natural to wonder, &#8220;Which ad is the most efficient and most effective?&#8221;</p>
<p>Both of these sites are relatively new, so I don&#8217;t have a lot of data to work with.  From the data that I do have, though, I&#8217;ve noticed a few key trends.</p>
<ul>
<li>The tall vertical skyscraper and the square blocks seem to have the best click-through rate</li>
<li>The horizontal image banner (like the one in the header) seems to have a low click-through rate</li>
<li>The tall vertical skyscraper and the square blocks seem to have lower pay-per-click values</li>
<li>The horizontal image banner seems to have a much higher payout than the other two options</li>
</ul>
<p>Like I said, I don&#8217;t have a whole lot of data to support these trends at the moment.  Over the next month or two, I plan on watching these trends and testing them out (using random tests of text verse image ads).</p>
<p>It&#8217;s something to keep in mind, though.  The horizontal image banner seems to be the most effective &#8211; the high payout makes up for the low click-through rate.  Although I wouldn&#8217;t get rid of the other ads, it&#8217;s a good justification for making sure you have at least one horizontal image banner on your site.</p>
<p>Notice any trends in your own Adsense reports?  I&#8217;d be interested to hear what other people have come up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/29/adsense-trends/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Website Tip: How to Find More Content to Write</title>
		<link>http://www.earn-web-cash.com/2008/01/27/website-tip-how-to-find-more-content-to-write/</link>
		<comments>http://www.earn-web-cash.com/2008/01/27/website-tip-how-to-find-more-content-to-write/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 14:24:37 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/27/website-tip-how-to-find-more-content-to-write/</guid>
		<description><![CDATA[An old web design adage is, "Content is king."  All the SEO and fancy design in the world won't help you if you don't have any content.

So how do you keep on writing?  Where do all the new ideas come from?

Everybody's got their own tricks, but here's one that I love to use when I'm short on ideas.  Go through your search engine logs and see what people are searching for - and not finding.]]></description>
			<content:encoded><![CDATA[<p>An old web design adage is, &#8220;Content is king.&#8221;  All the SEO and fancy design in the world won&#8217;t help you if you don&#8217;t have any content.</p>
<p>So how do you keep on writing?  Where do all the new ideas come from?</p>
<p>Everybody&#8217;s got their own tricks, but here&#8217;s one that I love to use when I&#8217;m short on ideas.  Go through your search engine logs and see what people are searching for &#8211; and not finding.<br />
<span id="more-72"></span><br />
Here&#8217;s an example.  Last week I wrote an article on <a href="http://www.earn-web-cash.com/2008/01/21/tooltip-gradient/" title="How to Create Tooltips with CSS and No Javascript">How to Create Style-able CSS Tooltips</a>.  </p>
<p>As usual, I was browsing through the Google Analytics data a day or two later.  While looking through the Search Engine results (the queries that people used to come to my site), I noticed that someone used the query &#8220;gradient background image gimp.&#8221;</p>
<p>The odd thing about this was that the article wasn&#8217;t about creating background images in Gimp &#8211; I just happened to mention at the end that you could use Gimp to create a gradient background image and add it to your tooltip.</p>
<p>This tells me two things.</p>
<p>First, someone is looking for this information.  If I write it&#8230; they will come.</p>
<p>Second, someone else is not serving this information up.  If a user stumbles on one of my articles that just barely mentions the topic, there can&#8217;t be a lot of targeted articles out there.</p>
<p>I decided to take the topic and run with it.  A few days later, I wrote a simple <a href="http://www.earn-web-cash.com/2008/01/24/how-to-create-a-gradient-background-image-in-gimp/" title="How to Create Gradient Background Images in Gimp">tutorial about how to create a gradient background image in Gimp</a>.  I targeted the article at those major keywords &#8211; gradient, background, image, Gimp &#8211; and now it&#8217;s getting some nice search engine traffic.</p>
<p>So if you&#8217;re ever short on ideas, this is a great way to respark that creativity.  Look through your search engine logs for queries that bring people in &#8211; but don&#8217;t bring people to what they&#8217;re looking for.  Then&#8230; give them what they want.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/27/website-tip-how-to-find-more-content-to-write/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Write Articles at Associated Content for Links and Traffic</title>
		<link>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/</link>
		<comments>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 14:15:57 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Traffic]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Article]]></category>
		<category><![CDATA[backlink]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[Publish]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/</guid>
		<description><![CDATA[You may have stumbled upon the section on writing for Associated Content &#8211; for money. But even if you&#8217;re not interested in being published on someone else&#8217;s site, AC can be a great tool for you as a webmaster. You can use it to get optimized backlinks and targeted traffic. If you&#8217;re not familiar with [...]]]></description>
			<content:encoded><![CDATA[<p>You may have stumbled upon the section on writing for <a href="http://www.earn-web-cash.com/writing-on-the-internet-where-to-earn-money/associated-content-what-is-it/" title="Associated Content - What Is It?">Associated Content &#8211; for money</a>.  </p>
<p>But even if you&#8217;re not interested in being published on someone else&#8217;s site, <a href="http://www.associatedcontent.com/join.html?refer=40409" title="Join Associated Content!">AC</a> can be a great tool for you as a webmaster.  You can use it to get optimized backlinks and targeted traffic.<br />
<span id="more-68"></span><br />
If you&#8217;re not familiar with AC, here&#8217;s a quick rundown of how it works.  You write an article which you can either submit for up front payment (in which you get paid ~3-8 bucks if they like it) or you can bypass the review process and get published immediately (without upfront payment).</p>
<p>Either way, once your article is published you earn a revenue share (Performance Payment, $1.50 per 1000 page views).  The good thing about skipping the up front payment is you can post articles that advertise your site &#8211; without it getting reviewed and picked over.</p>
<p>Although most of my AC articles are strictly for content, I have created a few as an experiment for gaining backlinks and traffic.  Here&#8217;s what I typically do.</p>
<p>I identify a topic on one of my sites that I&#8217;ve written a few articles on (3-4).  Then I write a brief &#8220;Guide&#8221; article that gives the reader an overview of the topic.  I dedicate one to two paragraphs to the sub-topics that each of my pages targets, and I include a link to my content page so that the reader can get more information.</p>
<p>You can see an example with this <a href="http://associatedcontent.com/article/552309/three_types_of_graphic_organizers_to.html">article on graphic organizers</a>.  It targets three content pages that I wrote on my other website (<a href="http://www.teachbabel.com">Babel</a>).  It also gives the user some useful information.</p>
<p>I originally tried this strictly as a method to gain backlinks.  On that grounds, it definitely worked.  I included four links to my site &#8211; one to the front page and three to individual content pages.  They were indexed quickly and picked up by the search engines.</p>
<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/01/babel-google-analytics.png' title='Picture of Google Analytics Stats for Babel' target='_blank'><img class="alignright" src='http://www.earn-web-cash.com/wp-content/uploads/2008/01/babel-google-analytics.thumbnail.png' alt='Picture of Google Analytics Stats for Babel' /></a>The unintended consequence of this is that it directed a bit of traffic to my site, too.  It&#8217;s by no means a vast amount of traffic, but every little bit counts.  In the past week, that article sent 21 visits to my site &#8211; a couple of visits per day (see the Google Analytics screenshot).</p>
<p>Doesn&#8217;t sound like a lot, but consider this.  If you write ten guide articles that get an average of ten click throughs per week &#8211; that&#8217;s another 400 visits per month.  On top of that, you&#8217;ll get 30-40 backlinks with keywords that <em>you</em> chose to best benefit your site.</p>
<p>This seems like a great tool for promoting your site &#8211; especially a relatively new site.  You can get optimized backlinks, you can drive some traffic, and you even get income from Associated Content if people do read your article.</p>
<p>Get paid for advertising your own site?  I don&#8217;t think it gets any better than that.  Go sign up for <a href="http://www.associatedcontent.com/join.html?refer=40409">Associated Content</a> and write a few stump articles yourself.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/26/ac-backlinks-traffic/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Check Your Websites Appearance in Other Browsers with Browsershots</title>
		<link>http://www.earn-web-cash.com/2008/01/23/website-in-browsers/</link>
		<comments>http://www.earn-web-cash.com/2008/01/23/website-in-browsers/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 22:55:11 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/23/website-in-browsers/</guid>
		<description><![CDATA[One of the most frustrating aspects of web design is trying to make your website look good in every browser. If you use some advanced css techniques, you never know how an older browser or a different platform is going to handle it. You can test how your site displays in a few browsers &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most frustrating aspects of web design is trying to make your website look good in every browser.  If you use some advanced css techniques, you never know how an older browser or a different platform is going to handle it.</p>
<p>You can test how your site displays in a few browsers &#8211; for example, I often check mine out in Windows IE, Ubuntu Firefox, and Ubuntu Opera.  But how am I going to check it on Mac browsers like Safari?<br />
<span id="more-58"></span><br />
Enter <a href="http://www.browsershots.com" title="Site to check your page in different browsers">Browsershots</a>.</p>
<p>The premise is very simple.  You check off a list of browsers and platforms, enter your website&#8217;s url, and click submit.  Then the servers open your site, take a screenshot, and upload the display to Browsershots.</p>
<p><a href='http://www.earn-web-cash.com/wp-content/uploads/2008/01/teachbabel-msie55.jpg' title='Browsershots Screenshot of Babel'><img src='http://www.earn-web-cash.com/wp-content/uploads/2008/01/teachbabel-msie55.thumbnail.jpg' alt='Browsershots Screenshot of Babel' / class="alignright"></a>You can then view the screenshots and see how your website appeared in those browsers.  You can check out some <a href="http://browsershots.org/http://www.teachbabel.com/">sample displays</a> for an <a href="http://www.teachbabel.com">education related website</a> that I created.</p>
<p>Your options are pretty extensive.  At the moment you can choose from 36 Linux browsers, 12 Windows browsers, and 4 Mac OS browsers.</p>
<p>After you submit your request, you need to wait until your website comes up in the queue.  Each server (factory, as they call it at Browsershots) has its own queue.  A lot of the servers will be done in a couple of minutes, but some queues can be one to two hours long.</p>
<p>One of the downsides to the site is that your request will expire in 30 minutes.  The completed screenshots will stay up there, but if you have any requests left in the queue they will be canceled.</p>
<p>You can refresh your request by clicking a button, but if you get stuck in a 90 minute queue you&#8217;ll have to remember to refresh your request several times.</p>
<p>All in all, very useful tool.  I plan to use it to test out any future design projects.  So the next time you want to see how a foreign browser would display your site, head over to <a href="http://www.browsershots.com">Browsershots</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/23/website-in-browsers/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Created a New Tool to Encode Sample HTML for Display</title>
		<link>http://www.earn-web-cash.com/2008/01/13/created-a-new-tool-to-encode-sample-html-for-display/</link>
		<comments>http://www.earn-web-cash.com/2008/01/13/created-a-new-tool-to-encode-sample-html-for-display/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 15:26:05 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Online Tools]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/13/created-a-new-tool-to-encode-sample-html-for-display/</guid>
		<description><![CDATA[I added a new script to the &#8220;Tools&#8221; section yesterday, which should be of interest to anyone that authors a website about HTML. I&#8217;m sure we&#8217;ve all faced this problem at one point or another &#8211; how do we get sample HTML to display properly, without being rendered, so that users can view it? Moreover, [...]]]></description>
			<content:encoded><![CDATA[<p>I added a <a href="http://www.earn-web-cash.com/online-tools-design/encode-sample-html/html-encoding-form/">new script</a> to the &#8220;Tools&#8221; section yesterday, which should be of interest to anyone that authors a website about HTML.</p>
<p>I&#8217;m sure we&#8217;ve all faced this problem at one point or another &#8211; how do we get sample HTML to display properly, without being rendered, so that users can view it?  Moreover, what&#8217;s the <strong>best</strong> method of doing this?<br />
<span id="more-35"></span><br />
I first struggled with this when I was writing for another site (Associated Content).  Because they filtered out a lot of html tags, it was pretty tough to find a way to get it to display properly.  The only method I could get to work reliably was to pad the tags with spaces, like &lt; html &gt;.</p>
<p>Not the best method, but thankfully there are better ways to do it on your own site.</p>
<p>The basic trick is to convert all of your &lt; characters into <code>&amp;lt;</code> and &gt; characters into <code>&amp;gt;</code>.  Want to go do all that by hand?</p>
<p>I didn&#8217;t think so.  I tend to do it by hand if I&#8217;m just typing one or two tags, but for a full-fledged example it&#8217;s much easier to have a script do the work for you.  So I built a tool to do just that.</p>
<p>Head over to the <a href="http://www.earn-web-cash.com/online-tools-design/encode-sample-html/html-encoding-form/">HTML Encoding Form</a>, copy and paste your sample code into one textarea, and press submit.  The HTML will be escaped for you, at which point you can copy and paste it back into your tutorial.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/13/created-a-new-tool-to-encode-sample-html-for-display/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Senserely.com &#8211; One Writing Site To Avoid</title>
		<link>http://www.earn-web-cash.com/2008/01/09/senserelycom-one-writing-site-to-avoid/</link>
		<comments>http://www.earn-web-cash.com/2008/01/09/senserelycom-one-writing-site-to-avoid/#comments</comments>
		<pubDate>Thu, 10 Jan 2008 02:15:37 +0000</pubDate>
		<dc:creator>Walkere</dc:creator>
				<category><![CDATA[Redirected]]></category>
		<category><![CDATA[Sundry Musings]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[Money]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.earn-web-cash.com/2008/01/09/senserelycom-one-writing-site-to-avoid/</guid>
		<description><![CDATA[The main two sites that I write at (besides my own) are Helium and Associated Content. Lately I&#8217;ve been looking around for other similar sites, so that I could test them out and review them. The other day I came across something truly disturbing in the way of online writing. I stumbled on the website [...]]]></description>
			<content:encoded><![CDATA[<p>The main two sites that I write at (besides my own) are <a href="http://www.helium.com">Helium</a> and <a href="http://www.associatedcontent.com/join.html?refer=40409">Associated Content</a>.  Lately I&#8217;ve been looking around for other similar sites, so that I could test them out and review them.</p>
<p>The other day I came across something truly disturbing in the way of online writing.  I stumbled on the website <a href="http://www.senserely.com">Senserely</a>.</p>
<p>It was kind of like a train wreck &#8211; it was horrifying, but I had to keep looking around just to see if it could get any worse.<br />
<span id="more-30"></span><br />
The website, like other online websites, works on a basic premise: you write an article, they host the article, you split the ad revenues.  The topic of the site is supposed to be AdSense and similar items.</p>
<p>On the surface, this doesn&#8217;t sound like a horrible idea.  Helium, Associated Content, and other sites have been working fine.  But none have looked quite as disgusting as Senserely.</p>
<p>The layout of the site is horrible.  It&#8217;s completely bogged down with ads &#8211; with three large square blocks and three rows of text ads before any content appears.  The color scheme doesn&#8217;t mesh well, and the content is near un-findable under the mountain of ads.</p>
<p>The site is also incredibly slow to load.  The site is built on top of a table based layout, with markup that doesn&#8217;t come close to passing validation.  Between the poor design and the load of javascript advertisements, it takes quite some time for the page to load and for me to be able to scroll around.</p>
<p>Go check it out for a minute.  You&#8217;ll get a good laugh out of it.  I couldn&#8217;t even bring myself to sign up and get a referral id &#8211; I&#8217;d feel a little bit dirty about actually referring someone to this site and recommending that you sign up.</p>
<p>Bottom line &#8211; check it out for a laugh, and then run far far away.  You can get similar functionality &#8211; with a better layout and better search engine placement &#8211; through <a href="http://www.associatedcontent.com/join.html?refer=40409">Associated Content</a> and <a href="http://www.xomba.com/referral/7778a521">Xomba</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.earn-web-cash.com/2008/01/09/senserelycom-one-writing-site-to-avoid/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

