<?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 Online Portfolio of Aaron Gloege &#187; PHP</title>
	<atom:link href="/blog/web-development/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aarongloege.com</link>
	<description>Version 3.0</description>
	<lastBuildDate>Tue, 29 Jun 2010 16:35:30 +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>Serialize Detection Function</title>
		<link>http://www.aarongloege.com/blog/web-development/php/serialize-detection-function/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/serialize-detection-function/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 20:26:04 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=786</guid>
		<description><![CDATA[This function is especially handy for when you’re pulling data from a database and are unsure weather it has been serialized or not.]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/serialize-detection-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic PHP Function Arguments</title>
		<link>http://www.aarongloege.com/blog/web-development/php/dynamic-php-function-arguments/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/dynamic-php-function-arguments/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 21:48:00 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=756</guid>
		<description><![CDATA[PHP functions are great methods for optimizing your site. The real power of PHP comes from its functions.There are more than 700 built-in functions, and endless ones that you can make yourself. But a good think to know about is arguments. And more specifically dynamic arguments. Sometimes, depending on a function, the number of arguments [...]]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/dynamic-php-function-arguments/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alternate Automatic Include File</title>
		<link>http://www.aarongloege.com/blog/web-development/php/alternate-automatic-include-file/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/alternate-automatic-include-file/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 14:00:10 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=731</guid>
		<description><![CDATA[A week ago I wrote a post on how to easily, and automatically include files on your website using the Apache module php.modc. Unfortunately, not all we3b hosting providers have this module switched on, and don&#8217;t allow you to change this. Luckily there is a workaround involving the RewriteEngine. The idea is simple: redirect all [...]]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/alternate-automatic-include-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically Include Files with PHP &amp; Apache</title>
		<link>http://www.aarongloege.com/blog/web-development/php/automatically-include-files/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/automatically-include-files/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 14:00:15 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=705</guid>
		<description><![CDATA[Need to include a files in all of your site&#8217;s pages? Normally, you&#8217;d use require() or include(). But do you really want to manually past the include code in every page? There&#8217;s the little known PHP directive auto_prepend_file and auto_append_file. What are PHP directives? They&#8217;re essential global PHP settings that are defined in you php.ini [...]]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/automatically-include-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Descendant of Category</title>
		<link>http://www.aarongloege.com/blog/web-development/php/wordpress-descendant-of-category-detection/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/wordpress-descendant-of-category-detection/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 17:45:37 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[category]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=448</guid>
		<description><![CDATA[WordPress&#8217;s default category structure is nice, but it lacks one major function: descendant category detection. The normal WordPress function in_category() only returns true if the current post is in the specified category, not if it&#8217;s a descendant. This can be especially frustrating when creating different templates for different categories. You don&#8217;t want to have to [...]]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/wordpress-descendant-of-category-detection/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PHP Ternary Operator</title>
		<link>http://www.aarongloege.com/blog/web-development/php/php-ternary-operator/</link>
		<comments>http://www.aarongloege.com/blog/web-development/php/php-ternary-operator/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 17:18:38 +0000</pubDate>
		<dc:creator>Aaron Gloege</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[conditional statement]]></category>
		<category><![CDATA[shortcut]]></category>

		<guid isPermaLink="false">http://www.aarongloege.com/?p=366</guid>
		<description><![CDATA[Codes can get long, so any kind of shortcut is always welcomed. Enter: The Ternary Operator. If/Else conditional statements can take up a lot of space. Especially, if you&#8217;re like me and like everything to be formatted with plenty of line breaks. Unfortunately, despite being easier to read, all that long winded coding adds to [...]]]></description>
		<wfw:commentRss>http://www.aarongloege.com/blog/web-development/php/php-ternary-operator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
