<?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>Code With Design &#187; video</title>
	<atom:link href="http://codewithdesign.com/cat/video/feed/" rel="self" type="application/rss+xml" />
	<link>http://codewithdesign.com</link>
	<description>web application development blog by Caleb Jonasson</description>
	<lastBuildDate>Fri, 11 May 2012 12:28:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Creating a Multi-Page Site From One Page Using GET</title>
		<link>http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/</link>
		<comments>http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/#comments</comments>
		<pubDate>Fri, 24 Sep 2010 15:43:20 +0000</pubDate>
		<dc:creator>Caleb Jonasson</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[GET]]></category>
		<category><![CDATA[multi-page]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://codewithdesign.com/?p=444</guid>
		<description><![CDATA[Tweet Creating a Multi-Page Site From One Page Using GET from Caleb Jonasson on Vimeo. Source Code Download Zip File 1 2 3 4 5 6 7 8 9 10 11 12 13 &#60;?php &#160; $t = $_GET&#91;'t'&#93;; &#160; if&#40;$t == 'contact'&#41;&#123; echo 'contact page'; &#125;else if&#40;$t == 'about'&#41;&#123; echo 'about page'; &#125;else&#123; echo 'index [...]
Related posts:<ol>
<li><a href='http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/' rel='bookmark' title='Using Sessions To Handle Errors With PHP'>Using Sessions To Handle Errors With PHP</a></li>
<li><a href='http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/' rel='bookmark' title='Recycle pages by splitting your website into pieces with PHP'>Recycle pages by splitting your website into pieces with PHP</a></li>
<li><a href='http://codewithdesign.com/2009/10/12/into-to-html-creating-a-basic-web-page/' rel='bookmark' title='Into to HTML: Creating A Basic Web Page'>Into to HTML: Creating A Basic Web Page</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style = 'float:left; margin-right:5px;'>            <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-text="Creating a Multi-Page Site From One Page Using GET" data-via="" data-url="http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/" en>Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="plus-one-wrap"><g:plusone size="tall" href="http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/"></g:plusone></div><p><iframe src="http://player.vimeo.com/video/15232211?portrait=0" width="651" height="366" frameborder="0"></iframe>
<p><a href="http://vimeo.com/15232211">Creating a Multi-Page Site From One Page Using GET</a> from <a href="http://vimeo.com/calebj">Caleb Jonasson</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<h2>Source Code</h2>
<p><a href="http://codewithdesign.com/wp-content/uploads/2010/09/multipage_site_from_single_file.zip">Download Zip File</a></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000088;">$t</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'t'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$t</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'contact'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'contact page'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$t</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">'about'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'about page'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #b1b100;">else</span><span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'index page'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;br&gt; &lt;a href=&quot;?t=about&quot;&gt;about&lt;/a&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<img src="http://codewithdesign.com/?ak_action=api_record_view&id=444&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/' rel='bookmark' title='Using Sessions To Handle Errors With PHP'>Using Sessions To Handle Errors With PHP</a></li>
<li><a href='http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/' rel='bookmark' title='Recycle pages by splitting your website into pieces with PHP'>Recycle pages by splitting your website into pieces with PHP</a></li>
<li><a href='http://codewithdesign.com/2009/10/12/into-to-html-creating-a-basic-web-page/' rel='bookmark' title='Into to HTML: Creating A Basic Web Page'>Into to HTML: Creating A Basic Web Page</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Sessions To Handle Errors With PHP</title>
		<link>http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/</link>
		<comments>http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/#comments</comments>
		<pubDate>Sat, 18 Sep 2010 06:50:44 +0000</pubDate>
		<dc:creator>Caleb Jonasson</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[error handling]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[sessions]]></category>

		<guid isPermaLink="false">http://codewithdesign.com/?p=415</guid>
		<description><![CDATA[TweetHere is a 10 minute video tutorial that is all about handling errors with sessions. It will teach you how to use three simple functions to set and display error messages for your PHP website or application. Using sessions to handle errors in php from Caleb Jonasson on Vimeo. Sorry about the styling error, apparently [...]
Related posts:<ol>
<li><a href='http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/' rel='bookmark' title='Creating a Multi-Page Site From One Page Using GET'>Creating a Multi-Page Site From One Page Using GET</a></li>
<li><a href='http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/' rel='bookmark' title='Recycle pages by splitting your website into pieces with PHP'>Recycle pages by splitting your website into pieces with PHP</a></li>
<li><a href='http://codewithdesign.com/2011/05/03/htaccess-handling-bad-server-requests/' rel='bookmark' title='.htaccess Handling Bad Server Requests'>.htaccess Handling Bad Server Requests</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style = 'float:left; margin-right:5px;'>            <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-text="Using Sessions To Handle Errors With PHP" data-via="" data-url="http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/" en>Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="plus-one-wrap"><g:plusone size="tall" href="http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/"></g:plusone></div><p>Here is a 10 minute video tutorial that is all about handling errors with sessions. It will teach you how to use three simple functions to set and display error messages for your PHP website or application.</p>
<p><iframe src="http://player.vimeo.com/video/15072637?portrait=0" width="651" height="366" frameborder="0"></iframe>
<p><a href="http://vimeo.com/15072637">Using sessions to handle errors in php</a> from <a href="http://vimeo.com/calebj">Caleb Jonasson</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Sorry about the styling error, apparently I cannot type.</p>
<p><a href="http://calebjdesign.com/projects/2010/code-tutorials/1/index.php">Demo</a></p>
<p><a href="http://codewithdesign.com/wp-content/uploads/2010/09/session_error_handling_tutorial.zip">Download Source Files</a></p>
<img src="http://codewithdesign.com/?ak_action=api_record_view&id=415&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/' rel='bookmark' title='Creating a Multi-Page Site From One Page Using GET'>Creating a Multi-Page Site From One Page Using GET</a></li>
<li><a href='http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/' rel='bookmark' title='Recycle pages by splitting your website into pieces with PHP'>Recycle pages by splitting your website into pieces with PHP</a></li>
<li><a href='http://codewithdesign.com/2011/05/03/htaccess-handling-bad-server-requests/' rel='bookmark' title='.htaccess Handling Bad Server Requests'>.htaccess Handling Bad Server Requests</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recycle pages by splitting your website into pieces with PHP</title>
		<link>http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/</link>
		<comments>http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/#comments</comments>
		<pubDate>Wed, 19 May 2010 00:02:41 +0000</pubDate>
		<dc:creator>Caleb Jonasson</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[load site from different sources]]></category>
		<category><![CDATA[require]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://codewithdesign.com/?p=400</guid>
		<description><![CDATA[Tweet Recycle pages by splitting your website into pieces with PHP from Calebj on Vimeo. Edit: Tuesday December 28th 2010, 9:11pm I have just uploaded the archived end result at a comments request. You can download it here: Recycle_pages_code_with_design.zip Related posts: Going Through Website Creation Part 1: Layout Using Sessions To Handle Errors With PHP [...]
Related posts:<ol>
<li><a href='http://codewithdesign.com/2009/11/13/going-through-website-creation-part-1-layout/' rel='bookmark' title='Going Through Website Creation Part 1: Layout'>Going Through Website Creation Part 1: Layout</a></li>
<li><a href='http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/' rel='bookmark' title='Using Sessions To Handle Errors With PHP'>Using Sessions To Handle Errors With PHP</a></li>
<li><a href='http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/' rel='bookmark' title='Creating a Multi-Page Site From One Page Using GET'>Creating a Multi-Page Site From One Page Using GET</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style = 'float:left; margin-right:5px;'>            <a href="http://twitter.com/share" class="twitter-share-button" data-count="vertical" data-text="Recycle pages by splitting your website into pieces with PHP" data-via="" data-url="http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/" en>Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div><div class="plus-one-wrap"><g:plusone size="tall" href="http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/"></g:plusone></div><p><object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11853239&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11853239&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="600" height="400"></embed></object>
<p><a href="http://vimeo.com/11853239">Recycle pages by splitting your website into pieces with PHP</a> from <a href="http://vimeo.com/calebj">Calebj</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Edit: Tuesday December 28th 2010, 9:11pm</p>
<p>I have just uploaded the archived end result at a comments request. You can download it here: <a href='http://codewithdesign.com/wp-content/uploads/2010/05/Recycle_pages_code_with_design.zip'>Recycle_pages_code_with_design.zip</a></p>
<img src="http://codewithdesign.com/?ak_action=api_record_view&id=400&type=feed" alt="" /><p>Related posts:<ol>
<li><a href='http://codewithdesign.com/2009/11/13/going-through-website-creation-part-1-layout/' rel='bookmark' title='Going Through Website Creation Part 1: Layout'>Going Through Website Creation Part 1: Layout</a></li>
<li><a href='http://codewithdesign.com/2010/09/17/using-sessions-to-handle-errors-with-php/' rel='bookmark' title='Using Sessions To Handle Errors With PHP'>Using Sessions To Handle Errors With PHP</a></li>
<li><a href='http://codewithdesign.com/2010/09/24/creating-a-multi-page-site-from-one-page-using-get/' rel='bookmark' title='Creating a Multi-Page Site From One Page Using GET'>Creating a Multi-Page Site From One Page Using GET</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://codewithdesign.com/2010/05/18/recycle-pages-by-splitting-your-website-into-pieces-with-php/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

