<?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>MeetJennings &#187; PHP</title>
	<atom:link href="http://meetjennings.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://meetjennings.com</link>
	<description>A personal portfolio and project changelog.</description>
	<lastBuildDate>Tue, 13 Sep 2011 06:26:28 +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>HackNY Hackathon Starter Script</title>
		<link>http://meetjennings.com/uncategorized/132/</link>
		<comments>http://meetjennings.com/uncategorized/132/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 23:54:44 +0000</pubDate>
		<dc:creator>j3nnings</dc:creator>
				<category><![CDATA[HackNY]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://meetjennings.com/?p=132</guid>
		<description><![CDATA[My buddy Andrew wanted to be able to hack on something a tomorrow&#8217;s HackNY competition. He&#8217;s never used PHP before so I wrote him this file to help him make an api call and display it on a web page. I&#8217;m assuming that you&#8217;ve already got a PHP environment set up somewhere. If not, check [...]]]></description>
		<wfw:commentRss>http://meetjennings.com/uncategorized/132/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CodeIgniter URL Rewrite with .htacccess AND populated $_GET variables</title>
		<link>http://meetjennings.com/how-to/codeigniter-url-rewrite-with-htacccess-and-populated-_get-variables/</link>
		<comments>http://meetjennings.com/how-to/codeigniter-url-rewrite-with-htacccess-and-populated-_get-variables/#comments</comments>
		<pubDate>Tue, 07 Dec 2010 21:10:10 +0000</pubDate>
		<dc:creator>j3nnings</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://meetjennings.com/?p=127</guid>
		<description><![CDATA[Everytime I start a new CodeIgniter project on Dreamhost I face the same two problems. How can I get URL rewriting to work properly? How can I repopulate $_GET variables once they are stripped by CodeIgniter? The problem with this pair of tasks is that task 2 is dependent on how you solve task 1. [...]]]></description>
		<wfw:commentRss>http://meetjennings.com/how-to/codeigniter-url-rewrite-with-htacccess-and-populated-_get-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>22Pixels Slowness</title>
		<link>http://meetjennings.com/php/22pixels-slowness/</link>
		<comments>http://meetjennings.com/php/22pixels-slowness/#comments</comments>
		<pubDate>Fri, 09 Apr 2010 19:02:53 +0000</pubDate>
		<dc:creator>j3nnings</dc:creator>
				<category><![CDATA[22Pixels.com]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://meetjennings.com/?p=88</guid>
		<description><![CDATA[I figured out why 22Pixels has been loading extremely slow over the past few months. It had to do with some extremely inefficient tag queries, something I should be able to clear up within the coming weeks.]]></description>
		<wfw:commentRss>http://meetjennings.com/php/22pixels-slowness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to check if PHP is in safemode</title>
		<link>http://meetjennings.com/how-to/how-to-check-if-php-is-in-safemode/</link>
		<comments>http://meetjennings.com/how-to/how-to-check-if-php-is-in-safemode/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 21:03:06 +0000</pubDate>
		<dc:creator>j3nnings</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://meetjennings.com/?p=19</guid>
		<description><![CDATA[Simple, all you need to do is create a new php document, and paste the following into it. &#60;?php phpinfo(); ?&#62; Load the page in your browser, and then press Control + F and search for &#8220;safe_mode.&#8221;]]></description>
		<wfw:commentRss>http://meetjennings.com/how-to/how-to-check-if-php-is-in-safemode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find SQL Bottlenecks With CodeIgniter</title>
		<link>http://meetjennings.com/how-to/codeigniter-performance-tips/</link>
		<comments>http://meetjennings.com/how-to/codeigniter-performance-tips/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 00:51:37 +0000</pubDate>
		<dc:creator>j3nnings</dc:creator>
				<category><![CDATA[CodeIgniter]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://meetjennings.com/?p=8</guid>
		<description><![CDATA[I have been using my latest project, VentStatus, as a an opportunity to learn a new framework: CodeIgniter. It has treated me well so far, most problems encountered only required a short workaround. Lately I&#8217;ve been concerned with the scale-ability of VentStatus, it&#8217;s my first project on this large of a scale. Luckily, CodeIgniter has [...]]]></description>
		<wfw:commentRss>http://meetjennings.com/how-to/codeigniter-performance-tips/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

