<?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>The Essential Collection of Web Development Tools</title>
	<atom:link href="http://blog.nbruns.us/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.nbruns.us</link>
	<description>Simple explanations of useful tools that every web developer should know</description>
	<lastBuildDate>Fri, 30 Jul 2010 17:28:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Make a Link Automatically Start to Download a File Using Content-Disposition Header</title>
		<link>http://blog.nbruns.us/?p=22</link>
		<comments>http://blog.nbruns.us/?p=22#comments</comments>
		<pubDate>Thu, 22 Jul 2010 00:50:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[automatic download]]></category>
		<category><![CDATA[content-disposition]]></category>
		<category><![CDATA[download link]]></category>
		<category><![CDATA[force download]]></category>
		<category><![CDATA[header]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=22</guid>
		<description><![CDATA[Sometimes we want to have a link to a file that rather than open the audio file/image/pdf and display in the browser, to have it automatically download the file to the user&#8217;s machine without requiring them to right click and &#8220;save as.&#8221; Some call this a &#8220;force download&#8221; link. The way this is done is [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Day of Joomla!</title>
		<link>http://blog.nbruns.us/?p=20</link>
		<comments>http://blog.nbruns.us/?p=20#comments</comments>
		<pubDate>Tue, 30 Mar 2010 05:25:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=20</guid>
		<description><![CDATA[The first day of a new technology is the toughest because you don&#8217;t know what you don&#8217;t know, and everything seems to be above your head. It&#8217;s also hard for teachers because it&#8217;s hard to remember the stuff you didn&#8217;t know you didn&#8217;t know. After seeing some of the same things over and over, and [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=20</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Text Image Creator</title>
		<link>http://blog.nbruns.us/?p=13</link>
		<comments>http://blog.nbruns.us/?p=13#comments</comments>
		<pubDate>Fri, 16 May 2008 06:24:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Intermediate]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Toys]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[GD Library]]></category>
		<category><![CDATA[text image]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=13</guid>
		<description><![CDATA[This is a simple image creator to make images out of text. It uses functions in the GD library for PHP. The image is updated automatically when the specifications form inputs are changed (except for the text) with some simple Javascript. The image created is in .png format and if you click the download link, [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login / Logout Mechanism Using Cookies</title>
		<link>http://blog.nbruns.us/?p=8</link>
		<comments>http://blog.nbruns.us/?p=8#comments</comments>
		<pubDate>Sat, 08 Mar 2008 22:40:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Beginner]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[cookies]]></category>
		<category><![CDATA[login/logout]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=8</guid>
		<description><![CDATA[Introduction The two most common methods for storing a user’s logged-in or logged-out state are sessions and cookies. Sessions are a construct that stores a set of variables on the server and gives the user’s browser an id as a key to those variables. Cookies are variables stored on the user’s machine that can be [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=8</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Submit a Form Using AJAX</title>
		<link>http://blog.nbruns.us/?p=6</link>
		<comments>http://blog.nbruns.us/?p=6#comments</comments>
		<pubDate>Fri, 07 Mar 2008 00:13:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[AJAX form submit]]></category>
		<category><![CDATA[form]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=6</guid>
		<description><![CDATA[Introduction After getting AJAX to work, a common follow-up task is to create a method for submitting a form via AJAX and displaying the response somewhere without changing the page. This can be done pretty simply with a little Javascript method that goes through the form, grabs all the inputs and attaches them to the [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Simplest AJAX Tutorial Ever</title>
		<link>http://blog.nbruns.us/?p=3</link>
		<comments>http://blog.nbruns.us/?p=3#comments</comments>
		<pubDate>Thu, 06 Mar 2008 21:34:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Simple AJAX Tutorial]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.nbruns.us/?p=3</guid>
		<description><![CDATA[Introduction AJAX is a method of getting information from the server without reloading the whole page. The Javascript XMLHttpRequest object (or in Internet Explorer, the ActiveXObject) is used to make a call to a given URL in the background and then do something with the response data. In this example we simply populate the innerHTML [...]]]></description>
		<wfw:commentRss>http://blog.nbruns.us/?feed=rss2&amp;p=3</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
