<?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>AtomicPages Blog &#187; Jackson Hines</title>
	<atom:link href="http://www.atomicpages.net/blog/author/jackson-hines/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.atomicpages.net/blog</link>
	<description>Web Hosting, Design, and Development</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:38:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>PHP #6: Even More Control Structures</title>
		<link>http://www.atomicpages.net/blog/2010/11/27/php-6-even-more-with-control-structures/</link>
		<comments>http://www.atomicpages.net/blog/2010/11/27/php-6-even-more-with-control-structures/#comments</comments>
		<pubDate>Sat, 27 Nov 2010 17:00:21 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[PHP Basics]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2574</guid>
		<description><![CDATA[So far we have learned about the following control structures:

if, elseif, else
while
for

But there are still more.  We&#8217;ll first look at the switch construct.
Switch
The syntax for a switch statement looks something like this:
12345678910switch &#40;expression&#41; &#123;
&#160; &#160; case value1:
&#160; &#160; &#160; &#160; //some code
&#160; &#160; case value2:
&#160; &#160; &#160; &#160; //some code
&#160; &#160; case value3:
&#160; &#160; <a href="http://www.atomicpages.net/blog/2010/11/27/php-6-even-more-with-control-structures/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/11/27/php-6-even-more-with-control-structures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Unix Commands &#8211; Part 1</title>
		<link>http://www.atomicpages.net/blog/2010/06/08/basic-unix-commands-part-1/</link>
		<comments>http://www.atomicpages.net/blog/2010/06/08/basic-unix-commands-part-1/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 17:00:28 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[Unix]]></category>
		<category><![CDATA[Webmaster Tutorials]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=3017</guid>
		<description><![CDATA[Similar to using DOS in windows, in Linux and Mac OS X operating systems, you can use the terminal using Unix Commands.  Here I will just quickly highlight the basics of how to use unix commands.
Once you open the terminal, you can start typing commands.  After typing a command hit the enter key <a href="http://www.atomicpages.net/blog/2010/06/08/basic-unix-commands-part-1/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/06/08/basic-unix-commands-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP #5: More Loops</title>
		<link>http://www.atomicpages.net/blog/2010/04/19/php-5-more-loops/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/19/php-5-more-loops/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 17:00:06 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[PHP Basics]]></category>
		<category><![CDATA[Web Programming]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2450</guid>
		<description><![CDATA[There are a few other types of loops in addition to while loops that we learned about in Part 4.
Do-While Loop
A do-while loop is very similar to a while loop.  The only difference is that the condition is evaluated after each loop iteration, rather than before.  The syntax is like this:
123do &#123;
&#160; // <a href="http://www.atomicpages.net/blog/2010/04/19/php-5-more-loops/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/19/php-5-more-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP #4: While Loops</title>
		<link>http://www.atomicpages.net/blog/2010/04/14/php-4-while-loops/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/14/php-4-while-loops/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 17:00:36 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[PHP Basics]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2381</guid>
		<description><![CDATA[In programming, loops are used to execute the same lines of code multiple times.  The simplest type of loop is called a while loop.  The lines of code in the body of a while loop will continue executing over and over WHILE the condition is true.  The syntax looks like this:
123while &#40;condition&#41; <a href="http://www.atomicpages.net/blog/2010/04/14/php-4-while-loops/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/14/php-4-while-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MMF2 Beginning Video Tutorial Series</title>
		<link>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-tutorial-series/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-tutorial-series/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 04:58:12 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2331</guid>
		<description><![CDATA[This tutorial series is designed to get beginner&#8217;s to Multimedia Fusion 2 up and running, creating their own games. By the end of series you will know all the basics and will have created your own your own Game of &#8220;One Player Pong.&#8221; The series is presented in chronological order.
Before using this course, you should:

Have <a href="http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-tutorial-series/" class="more-link">More &#62;</a>]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-tutorial-series/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>MMF2 Beginning Video 40: Pong Part 6</title>
		<link>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-40-pong-part-6/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-40-pong-part-6/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 17:00:32 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2212</guid>
		<description><![CDATA[(Video: Watch this video on the post page)

Download WMV

&#60;&#60; Previous
]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/09/mmf2-beginning-video-40-pong-part-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://www.atomicstud.com/sites/default/files/videos/mmf2begintut/wmv/pong_6.wmv" length="6030267" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>MMF2 Beginning Video 39: Install Programs</title>
		<link>http://www.atomicpages.net/blog/2010/04/08/mmf2-beginning-video-39-install-programs/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/08/mmf2-beginning-video-39-install-programs/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 17:00:07 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2207</guid>
		<description><![CDATA[(Video: Watch this video on the post page)

Download WMV

&#60;&#60; Previous
Next &#62;&#62;
]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/08/mmf2-beginning-video-39-install-programs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.atomicstud.com/sites/default/files/videos/mmf2begintut/wmv/install_programs.wmv" length="3363815" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>MMF2 Beginning Video 38: Internet Applications</title>
		<link>http://www.atomicpages.net/blog/2010/04/07/mmf2-beginning-video-38-internet-applications/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/07/mmf2-beginning-video-38-internet-applications/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 17:00:43 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2205</guid>
		<description><![CDATA[(Video: Watch this video on the post page)

Download WMV

&#60;&#60; Previous
Next &#62;&#62;
]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/07/mmf2-beginning-video-38-internet-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.atomicstud.com/sites/default/files/videos/mmf2begintut/wmv/internet_applications.wmv" length="6088955" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>MMF2 Beginning Video 37: Stand Alone Applications</title>
		<link>http://www.atomicpages.net/blog/2010/04/06/mmf2-beginning-video-37-stand-alone-applications/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/06/mmf2-beginning-video-37-stand-alone-applications/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 18:00:19 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2203</guid>
		<description><![CDATA[(Video: Watch this video on the post page)

Download WMV

&#60;&#60; Previous
Next &#62;&#62;
]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/06/mmf2-beginning-video-37-stand-alone-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.atomicstud.com/sites/default/files/videos/mmf2begintut/wmv/stand_alone_applications.wmv" length="3054775" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>MMF2 Beginning Video 36: Frame Properties</title>
		<link>http://www.atomicpages.net/blog/2010/04/05/mmf2-beginning-video-36-frame-properties/</link>
		<comments>http://www.atomicpages.net/blog/2010/04/05/mmf2-beginning-video-36-frame-properties/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:00:25 +0000</pubDate>
		<dc:creator>Jackson Hines</dc:creator>
				<category><![CDATA[MMF2 Beginning Videos Series]]></category>

		<guid isPermaLink="false">http://www.atomicpages.net/blog/?p=2200</guid>
		<description><![CDATA[(Video: Watch this video on the post page)

Download WMV

&#60;&#60; Previous
Next &#62;&#62;
]]></description>
		<wfw:commentRss>http://www.atomicpages.net/blog/2010/04/05/mmf2-beginning-video-36-frame-properties/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.atomicstud.com/sites/default/files/videos/mmf2begintut/wmv/frame_prop.wmv" length="8006666" type="video/x-ms-wmv" />
		</item>
	</channel>
</rss>

