<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Ben Compton, Web Developer</title>
	
	<link>http://www.benwebdeveloper.com</link>
	<description>Striving to provide the best...</description>
	<lastBuildDate>Fri, 30 Jul 2010 15:54:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/benwebdeveloper" /><feedburner:info uri="benwebdeveloper" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>benwebdeveloper</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Forwarding Traffic To WWW Domain</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/y7qcfMf5glc/</link>
		<comments>http://www.benwebdeveloper.com/2010/06/forwarding-traffic-to-www-domain/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 06:12:12 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[Server Administration]]></category>
		<category><![CDATA[Web Servers]]></category>

		<guid isPermaLink="false">http://www.benwebdeveloper.com/?p=305</guid>
		<description><![CDATA[You can alter the way your URL is displayed. By adding a snippet of code into your .htaccess file you can automatically rewrite the URL entered by the user. For example if a vistor goes to the address &#8220;yourdomain.com&#8221; and you have specified in your .htaccess to rewrite it with the www. then the .htaccess [...]]]></description>
			<content:encoded><![CDATA[<p>You can alter the way your URL is displayed. By adding a snippet of code into your .htaccess file you can automatically rewrite the URL entered by the user. For example if a vistor goes to the address &#8220;yourdomain.com&#8221; and you have specified in your .htaccess to rewrite it with the www. then the .htaccess file will automatically change it to &#8220;www.yourdomain.com&#8221;.</p>
<p>The .htaccess file can be located in the root of your website and can be modifed or created in an unformatted text editor such as notepad or Dreamweaver.</p>
<p>Add the following snippet of code into your .htaccess file:</p>

<div class="wp_syntax"><div class="code"><pre class="apache" style="font-family:monospace;"><span style="color: #adadad; font-style: italic;">#Turn the RewriteEngine on.</span>
<span style="color: #adadad; font-style: italic;">#You will need to add these rules to the top of your .htaccess file</span>
&nbsp;
<span style="color: #00007f;">RewriteEngine</span> <span style="color: #0000ff;">on</span>
&nbsp;
<span style="color: #adadad; font-style: italic;">#The following code will add a leading www to a domain if it is missing.</span>
&nbsp;
<span style="color: #00007f;">RewriteCond</span> %{HTTP_HOST} !^www\.
<span style="color: #00007f;">RewriteRule</span> ^(.*)$ http://www.%{HTTP_HOST}/$<span style="color: #ff0000;">1</span> [R=<span style="color: #ff0000;">301</span>,L]</pre></div></div>


<p><a href="http://feedads.g.doubleclick.net/~a/7_0x0v6OLJSc7Nri8U8cV2frx0k/0/da"><img src="http://feedads.g.doubleclick.net/~a/7_0x0v6OLJSc7Nri8U8cV2frx0k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7_0x0v6OLJSc7Nri8U8cV2frx0k/1/da"><img src="http://feedads.g.doubleclick.net/~a/7_0x0v6OLJSc7Nri8U8cV2frx0k/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/y7qcfMf5glc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/06/forwarding-traffic-to-www-domain/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/06/forwarding-traffic-to-www-domain/</feedburner:origLink></item>
		<item>
		<title>Customise Your Website Icon</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/DM8Ux46tt1s/</link>
		<comments>http://www.benwebdeveloper.com/2010/06/customise-your-website-icon/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 06:11:38 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[Basics]]></category>
		<category><![CDATA[Beginners]]></category>
		<category><![CDATA[Branding]]></category>
		<category><![CDATA[favicon.ico]]></category>
		<category><![CDATA[featured]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.benwebdeveloper.com/?p=269</guid>
		<description><![CDATA[You are able to customise your websites icon by using a favicon.ico file. Web browsers will check to see if your website has a Favourites Icon, this icon allows your users to easily identify your site from another in their list of favourites. More modern browsers like IE 7, Firefox and Chrome show the icon [...]]]></description>
			<content:encoded><![CDATA[<p>You are able to customise your websites icon by using a favicon.ico file. Web browsers will check to see if your website has a Favourites Icon, this icon allows your users to easily identify your site from another in their list of favourites. More modern browsers like IE 7, Firefox and Chrome show the icon in their tabs for easy identification.</p>
<p>This is what a favicon looks like in your browser:</p>
<p><a href="http://www.benwebdeveloper.com/wp-content/uploads/2010/06/favicon-example.jpg"><img src="http://www.benwebdeveloper.com/wp-content/uploads/2010/06/favicon-example.jpg" alt="Favicon Example" title="Favicon Example" width="290" height="34" class="alignnone size-full wp-image-362" /></a></p>
<p><a href="http://www.benwebdeveloper.com">Ben Web Developer</a> uses an image that is 16px*16px and was created in Adobe Photoshop. I generated the favicon file using <a href="http://tools.dynamicdrive.com/favicon/">Dynamic Drive</a>. However there are a few sites that give you the tools to create this file:</p>
<ul>
<li><a href="http://tools.dynamicdrive.com/favicon/">Dynamic Drive</a><br />
&#8220;Use this online tool to easily create a favicon (favorites icon) for your site. A favicon is a small, 16&#215;16 image that is shown inside the browser&#8217;s location bar and bookmark menu when your site is called up. It is a good way to brand your site and increase it&#8217;s prominence in your visitor&#8217;s bookmark menu.&#8221;</li>
<li><a href="http://www.favicon.co.uk/">Favicon.co.uk</a><br />
&#8220;This tool will allow you to generate a favicon.ico file from any image on your computer.&#8221;</li>
<li><a href="http://www.favicon.cc/">Favicon.cc</a><br />
&#8220;Favicon.cc is a tool to create or download favicon.ico icons, that get displayed in the address bar of every browser.&#8221;</li>
</ul>
<p><span id="more-269"></span>Once you have generated your favicon.ico file, you will need to upload it to http://www.yourdomain.com/favicon.ico, your favicon should work straight away. However if it doesnt work or if you have stored your favicon in a different file path then you will need to add the following XHTML code into your &lt;head&gt; section:</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;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;shortcut icon&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.yourdomain.com/path/favicon.ico&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>Alternatively you can use the HTML code:</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;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;shortcut icon&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.yourdomain.com/path/favicon.ico&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">link</span><span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

<p>If your website audience is using Internet Explorer 6 or lower then you may want to include the shortcut icon meta data.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/MhBiWh2K0fUoiQ5usE-h0M4riv4/0/da"><img src="http://feedads.g.doubleclick.net/~a/MhBiWh2K0fUoiQ5usE-h0M4riv4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/MhBiWh2K0fUoiQ5usE-h0M4riv4/1/da"><img src="http://feedads.g.doubleclick.net/~a/MhBiWh2K0fUoiQ5usE-h0M4riv4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/DM8Ux46tt1s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/06/customise-your-website-icon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/06/customise-your-website-icon/</feedburner:origLink></item>
		<item>
		<title>Linking Your Blog’s RSS Feed To FeedBurner</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/1xGlTP4G_jE/</link>
		<comments>http://www.benwebdeveloper.com/2010/06/linking-your-blogs-rss-feed-to-feedburner/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 18:10:47 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Feedburner]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[RSS Feed]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://www.benwebdeveloper.com/?p=261</guid>
		<description><![CDATA[I have installed FD Feedburner Plugin on my WordPress blog, this enables me to redirect all my RSS feeds to a Google Feedburner site. You will need a Google Feedburner account before you are able to redirect your RSS feeds, please sign-up here. Upon installing and activating the plugin, visit its settings page under Plugins [...]]]></description>
			<content:encoded><![CDATA[<p>I have installed FD Feedburner Plugin on my WordPress blog, this enables me to redirect all my RSS feeds to a Google Feedburner site.</p>
<p>You will need a Google Feedburner account before you are able to redirect your RSS feeds, please sign-up <a title="here" href="http://feedburner.google.com/fb/a/home" target="_blank">here</a>.</p>
<p>Upon installing and activating the plugin, visit its settings page under Plugins &gt;&gt; Feedburner Configuration. In the &#8220;Redirect my feeds here&#8221; textbox enter the link of your Feedburner site, i.e. <a title="http://feeds.feedburner.com/benwebdeveloper" href="http://feeds.feedburner.com/benwebdeveloper" target="_blank">http://feeds.feedburner.com/benwebdeveloper</a>. Your sites feeds should now be redirected to your Google Feedburner site, however you may need to edit or make a new post before it takes effect.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/0HhsNMwS8UKd1lO6BPbNxBSV6rQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/0HhsNMwS8UKd1lO6BPbNxBSV6rQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0HhsNMwS8UKd1lO6BPbNxBSV6rQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/0HhsNMwS8UKd1lO6BPbNxBSV6rQ/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/1xGlTP4G_jE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/06/linking-your-blogs-rss-feed-to-feedburner/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/06/linking-your-blogs-rss-feed-to-feedburner/</feedburner:origLink></item>
		<item>
		<title>Choosing The Right Password!</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/HIs2FW4nmvc/</link>
		<comments>http://www.benwebdeveloper.com/2010/06/choosing-the-right-password/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 05:55:34 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Web Security]]></category>
		<category><![CDATA[Fraud Preventation]]></category>
		<category><![CDATA[Fraud Protection]]></category>
		<category><![CDATA[Online Fraud]]></category>
		<category><![CDATA[Passwords]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://benwebdeveloper.com/?p=247</guid>
		<description><![CDATA[Your password is a secret word or string of characters and is used for authentication, to prove identity or to gain access to a secure area. It is important that you keep your password a secret from those not allowed access. You should select a password that is easy to remember but at the same [...]]]></description>
			<content:encoded><![CDATA[<p>Your password is a secret word or string of characters and is used for authentication, to prove identity or to gain access to a secure area.</p>
<p><strong>It is important that you keep your password a secret from those not allowed access.</strong></p>
<p>You should select a password that is easy to remember but at the same time hard for someone else to guess, below is a list of common guidelines for choosing good passwords:</p>
<ul>
<li>Include numbers, symbols, upper and lowercase letters in your passwords if the system allows you to.</li>
<li>Your chosen password should be about 12 &#8211; 14 characters long, can be longer if you are able to remember it.</li>
<li>Avoid repetions, letter or number sequences, names, pet-names, dictionary words and biograhpical information.  i.e 1234, abcd.</li>
<li>If the system allows you to use both upper and lowercase letters and recognises them as signifcant, then you should use this to your advantage.</li>
<li>Your password should be easily remembered and kept secure. (Don&#8217;t write your password down!)</li>
</ul>

<p><a href="http://feedads.g.doubleclick.net/~a/65w-Sj22W787IHUPFYWDfDH7H9M/0/da"><img src="http://feedads.g.doubleclick.net/~a/65w-Sj22W787IHUPFYWDfDH7H9M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/65w-Sj22W787IHUPFYWDfDH7H9M/1/da"><img src="http://feedads.g.doubleclick.net/~a/65w-Sj22W787IHUPFYWDfDH7H9M/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/HIs2FW4nmvc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/06/choosing-the-right-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/06/choosing-the-right-password/</feedburner:origLink></item>
		<item>
		<title>What Makes A Good Blog Post?</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/e4wCYq1_imQ/</link>
		<comments>http://www.benwebdeveloper.com/2010/06/what-makes-a-good-blog-post/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 21:05:19 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Writing Blogs]]></category>

		<guid isPermaLink="false">http://benwebdeveloper.com/?p=201</guid>
		<description><![CDATA[Have you ever been wondering what makes a good blog post? Make Your Opinion Known People like blogs because they are written by individual people who want to know what other people think. Add Lots Of Links Support your post with links that are relevant to your to your post. Short And Sweet Try keeping [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever been wondering what makes a good blog post?</p>
<ol>
<li><strong>Make Your Opinion Known</strong><br />
People like blogs because they are written by individual people who want to know what other people think.</li>
<li><strong>Add Lots Of Links<br />
</strong>Support your post with links that are relevant to your to your post.</li>
<li><strong>Short And Sweet<br />
</strong>Try keeping your posts to say 250 words, people will find this easier to remember and it won&#8217;t take as much time to read as a long post will.</li>
<li><strong>Snappy Titles</strong><br />
People will often read a blog or post just because it has a simple but effective title.</li>
<li><strong>Lists<br />
</strong>Lists provide a simple format for the points you want to get across.</li>
<li><strong>Write With Passion</strong><br />
The more passionate you are about your chosen subject the more likely the user will read the post and other areas of your website.</li>
<li><strong>Keeping Your Style The Same<br />
</strong>Once you find a nice design, stick with it, people will then get acustomed to how your site looks and works.</li>
<li><strong>Editing Your Post<br />
</strong>Check your posts before you publish, minimise the spelling mistakes and make sure you&#8217;ve written what you want to write.</li>
</ol>
<p>I hope these help you write your own blog. Feel free to write your own blog writing tips!</p>

<p><a href="http://feedads.g.doubleclick.net/~a/TDUv9dd7XhpNfi5g8RrkS0SgY2o/0/da"><img src="http://feedads.g.doubleclick.net/~a/TDUv9dd7XhpNfi5g8RrkS0SgY2o/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/TDUv9dd7XhpNfi5g8RrkS0SgY2o/1/da"><img src="http://feedads.g.doubleclick.net/~a/TDUv9dd7XhpNfi5g8RrkS0SgY2o/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/e4wCYq1_imQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/06/what-makes-a-good-blog-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/06/what-makes-a-good-blog-post/</feedburner:origLink></item>
		<item>
		<title>How To Change Your WordPress Avatar!</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/9HNno6nFXdA/</link>
		<comments>http://www.benwebdeveloper.com/2010/05/how-to-change-your-wordpress-avatar/#comments</comments>
		<pubDate>Mon, 31 May 2010 15:29:28 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Images]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Avatar]]></category>
		<category><![CDATA[Gravatar]]></category>

		<guid isPermaLink="false">http://benwebdeveloper.com/?p=135</guid>
		<description><![CDATA[Ever wondered how to change your WordPress Avatar? You don&#8217;t have to anymore! If you want to change your avatar then you should already have a wordpress account. If you don&#8217;t then you can sign up here. - Go to http://en.gravatar.com/ - You should already be logged in, however if your not then click here [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how to change your WordPress Avatar? You don&#8217;t have to anymore!</p>
<p>If you want to change your avatar then you should already have a wordpress account. If you don&#8217;t then you can sign up <a title="here" href="http://wordpress.com/" target="_blank">here</a>.</p>
<p style="padding-left: 30px;">- Go to <a title="http://en.gravatar.com/" href="http://en.gravatar.com/" target="_blank">http://en.gravatar.com/</a><br />
- You should already be logged in, however if your not then click <a title="here" href="http://en.gravatar.com/site/login/" target="_blank">here</a> to login.<br />
- You should now be shown a page with your email addresses on.<br />
- Click &#8220;add a new image&#8221;.<br />
- Click on the appropriate button depending on where you are getting your image from.<br />
- Find the image you want to use and press &#8220;next&#8221;.<br />
- Click &#8220;Crop and Finish!&#8221; after you have cropped your image to get the bits you want.<br />
- Choose the appropriate rating for the image.<br />
- Select the email addresses you would like to use the image for.<br />
- Finally, click &#8220;Use for selected addresses&#8221;.</p>
<p>Your avatar should now have changed. If your avatar hasn&#8217;t changed then you may need to clear your cache.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/qwvGrYZnegPWfeufuoDJf-_mQQ4/0/da"><img src="http://feedads.g.doubleclick.net/~a/qwvGrYZnegPWfeufuoDJf-_mQQ4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/qwvGrYZnegPWfeufuoDJf-_mQQ4/1/da"><img src="http://feedads.g.doubleclick.net/~a/qwvGrYZnegPWfeufuoDJf-_mQQ4/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/9HNno6nFXdA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/05/how-to-change-your-wordpress-avatar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/05/how-to-change-your-wordpress-avatar/</feedburner:origLink></item>
		<item>
		<title>Welcome</title>
		<link>http://feedproxy.google.com/~r/benwebdeveloper/~3/e0OvjIqsC8M/</link>
		<comments>http://www.benwebdeveloper.com/2010/05/welcome/#comments</comments>
		<pubDate>Sun, 30 May 2010 06:31:56 +0000</pubDate>
		<dc:creator>Ben Compton</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://benwebdeveloper.com/?p=1</guid>
		<description><![CDATA[Welcome to my blog.  This is my first ever blog entry . I&#8217;ll be posting regularly! I&#8217;ll be happy to help anyone if they need with any coding issues..]]></description>
			<content:encoded><![CDATA[<p>Welcome to my blog.  This is my first ever blog entry <img src='http://www.benwebdeveloper.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> . I&#8217;ll be posting regularly!</p>
<p>I&#8217;ll be happy to help anyone if they need with any coding issues..</p>

<p><a href="http://feedads.g.doubleclick.net/~a/JEKdHVCx0GKveyu32bND9NPicNU/0/da"><img src="http://feedads.g.doubleclick.net/~a/JEKdHVCx0GKveyu32bND9NPicNU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/JEKdHVCx0GKveyu32bND9NPicNU/1/da"><img src="http://feedads.g.doubleclick.net/~a/JEKdHVCx0GKveyu32bND9NPicNU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/benwebdeveloper/~4/e0OvjIqsC8M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.benwebdeveloper.com/2010/05/welcome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.benwebdeveloper.com/2010/05/welcome/</feedburner:origLink></item>
	</channel>
</rss><!-- This Quick Cache file was built for (  www.benwebdeveloper.com/feed/ ) in 0.49825 seconds, on Aug 12th, 2010 at 7:37 am UTC. --><!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Aug 12th, 2010 at 8:37 am UTC -->
