<?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>Website Theme</title>
	<atom:link href="http://websitetheme.com/feed" rel="self" type="application/rss+xml" />
	<link>http://websitetheme.com</link>
	<description>Quality website themes and templates</description>
	<lastBuildDate>Mon, 05 Nov 2012 20:32:11 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>PHP repetition control structures</title>
		<link>http://websitetheme.com/archives/30-PHP-repetition-control-structures.html</link>
		<comments>http://websitetheme.com/archives/30-PHP-repetition-control-structures.html#comments</comments>
		<pubDate>Sat, 01 Sep 2012 17:28:14 +0000</pubDate>
		<dc:creator>Abdussamad</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://websitetheme.com/?p=30</guid>
		<description><![CDATA[A control structure is block of code that is executed based on a condition. A repetition control structure repeats program statements based on the evaluation of a condition. PHP has the following repetition control structures: For loop Foreach loop While loop Do while loop Let&#8217;s take a look at how each of these repetition control [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/30-PHP-repetition-control-structures.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP functions</title>
		<link>http://websitetheme.com/archives/28-PHP-functions.html</link>
		<comments>http://websitetheme.com/archives/28-PHP-functions.html#comments</comments>
		<pubDate>Wed, 29 Aug 2012 18:11:35 +0000</pubDate>
		<dc:creator>Abdussamad</dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[server side programming]]></category>

		<guid isPermaLink="false">http://websitetheme.com/?p=28</guid>
		<description><![CDATA[A good programming practice is called Do not Repeat Yourself (DRY). The idea is that you attempt to maximize code reuse. One way to do this is to write functions. A function is a block of code that you write once and then you can execute it multiple times from other parts of your code. [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/28-PHP-functions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BlackLens WordPress theme</title>
		<link>http://websitetheme.com/archives/18-BlackLens-Wordpress-theme.html</link>
		<comments>http://websitetheme.com/archives/18-BlackLens-Wordpress-theme.html#comments</comments>
		<pubDate>Sun, 08 Nov 2009 02:43:00 +0000</pubDate>
		<dc:creator>Abdussamad</dc:creator>
				<category><![CDATA[Wordpress themes]]></category>
		<category><![CDATA[blog themes]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://websitetheme.COM/?p=18</guid>
		<description><![CDATA[A brand new theme for wordpress users. BlackLens is a black, white and pink theme with a floral decoration in the top right of the page. Its a two column theme with a left sidebar and support for widgets: BlackLens theme This theme is free for you to use on your wordpress blog. Live Demo [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/18-BlackLens-Wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blog Pixel wordpress theme</title>
		<link>http://websitetheme.com/archives/15-Blog-Pixel-wordpress-theme.html</link>
		<comments>http://websitetheme.com/archives/15-Blog-Pixel-wordpress-theme.html#comments</comments>
		<pubDate>Wed, 30 May 2007 12:07:56 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[blog themes]]></category>
		<category><![CDATA[free themes]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress themes]]></category>

		<guid isPermaLink="false">http://websitetheme.COM/?p=15</guid>
		<description><![CDATA[Click on image to view larger version Fuad of bloganything.net has released his Blog Pixel wordpress theme for free. Blog Pixel is a wide three column theme with impressive attention to detail. As Fuad puts it in his post, blog pixel is very easy on the eyes. With a wide left side column for your [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/15-Blog-Pixel-wordpress-theme.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Variables and constants</title>
		<link>http://websitetheme.com/archives/13-PHP-Variables-and-constants.html</link>
		<comments>http://websitetheme.com/archives/13-PHP-Variables-and-constants.html#comments</comments>
		<pubDate>Fri, 02 Mar 2007 16:40:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[PHP Tutorial]]></category>
		<category><![CDATA[beginners guide]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[server side programming]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://websitetheme.COM/?p=13</guid>
		<description><![CDATA[Variables introduction Variables are used by programmers to store values and to refer to those values in code. Variables in PHP need not be defined. Variable types also do not exist although variable scope does. All variables begin with a $ sign. Variable names can contain numbers, letters and underscores. Variable names can only begin [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/13-PHP-Variables-and-constants.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Key features of a good website navigation system</title>
		<link>http://websitetheme.com/archives/12-Key-features-of-a-good-website-navigation-system.html</link>
		<comments>http://websitetheme.com/archives/12-Key-features-of-a-good-website-navigation-system.html#comments</comments>
		<pubDate>Sat, 02 Dec 2006 22:09:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[General website design]]></category>
		<category><![CDATA[HCI]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[useability]]></category>
		<category><![CDATA[website design]]></category>

		<guid isPermaLink="false">http://websitetheme.COM/?p=12</guid>
		<description><![CDATA[Website useability is an important consideration in any website design. Websites are designed to be viewed by many different people and it is important that designers allow for different needs. A website navigation system must allow for easy and intuitive navigation between the different sections of a site. Some of the key features of any [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/12-Key-features-of-a-good-website-navigation-system.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colour combinations for web designers</title>
		<link>http://websitetheme.com/archives/11-Colour-combinations-for-web-designers.html</link>
		<comments>http://websitetheme.com/archives/11-Colour-combinations-for-web-designers.html#comments</comments>
		<pubDate>Thu, 23 Nov 2006 02:40:29 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[General website design]]></category>
		<category><![CDATA[colour combination]]></category>
		<category><![CDATA[design sense]]></category>
		<category><![CDATA[HCI]]></category>

		<guid isPermaLink="false">http://websitetheme.COM/?p=11</guid>
		<description><![CDATA[Visually appealing colour combinations are not always easy to make. But there are a number of websites that allow you to generate good looking colour combinations. Siteprocentral&#8217;s color combination tool is very impressive. It allows you to automatically generate complimentary, monochromatic and analogic colours based on the colour you select. You can vary the hue, [...]]]></description>
		<wfw:commentRss>http://websitetheme.com/archives/11-Colour-combinations-for-web-designers.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
