<?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"
	>

<channel>
	<title>Website Development</title>
	<atom:link href="http://phpblog.info/feed" rel="self" type="application/rss+xml" />
	<link>http://phpblog.info</link>
	<description>Linux, Apache, MySQL, PHP, XHTML, CSS, Javascript, AJAX and more</description>
	<pubDate>Wed, 22 Oct 2008 17:35:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>PHP 5.3 alpha1 released</title>
		<link>http://phpblog.info/2008/09/01/php-53-alpha1-released</link>
		<comments>http://phpblog.info/2008/09/01/php-53-alpha1-released#comments</comments>
		<pubDate>Mon, 01 Sep 2008 11:24:35 +0000</pubDate>
		<dc:creator>James Benson</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[PHP5]]></category>

		<guid isPermaLink="false">http://phpblog.info/?p=107</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
digg_url = 'http://phpblog.info/2008/09/01/php-53-alpha1-released';
digg_bgcolor = '#FFFFFF';
digg_skin = 'compact';
digg_window = 'new';
digg_title = 'PHP 5.3 alpha1 released';
digg_bodytext = 'PHP 5.3 alpha1 was released 1st August 2008, you can see the news entry for this here.
Along with this alpha release are quite a few drastic changes and some cool new features.
Firstly it says &#8216;The PHP 5.3.0 branch will only support Windows 2000,...';
digg_media = 'news';
digg_topic = '';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
PHP 5.3 alpha1 was released 1st August 2008, you can see the news entry for this here.
Along with this alpha release are quite a few drastic changes and some cool new features.
Firstly it says &#8216;The PHP 5.3.0 branch will only support Windows 2000, XP, Server 2003, Vista, and Server 2008. Support has been dropped for [...]]]></description>
		<wfw:commentRss>http://phpblog.info/2008/09/01/php-53-alpha1-released/feed</wfw:commentRss>
		</item>
		<item>
		<title>When to use static php variables</title>
		<link>http://phpblog.info/2008/07/26/when-to-use-static-php-variables</link>
		<comments>http://phpblog.info/2008/07/26/when-to-use-static-php-variables#comments</comments>
		<pubDate>Sat, 26 Jul 2008 09:25:33 +0000</pubDate>
		<dc:creator>James Benson</dc:creator>
		
		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Website Development]]></category>

		<category><![CDATA[PHP5]]></category>

		<guid isPermaLink="false">http://justphp.co.uk/blog/?p=54</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
digg_url = 'http://phpblog.info/2008/07/26/when-to-use-static-php-variables';
digg_bgcolor = '#FFFFFF';
digg_skin = 'compact';
digg_window = 'new';
digg_title = 'When to use static php variables';
digg_bodytext = 'If your a PHP developer this handy little variable can often be overlooked.

I&#8217;ve personally found quite a few situations which the static php variable comes in very handy, this is usually best used within a recursive function or within a static...';
digg_media = 'news';
digg_topic = '';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
If your a PHP developer this handy little variable can often be overlooked.

I&#8217;ve personally found quite a few situations which the static php variable comes in very handy, this is usually best used within a recursive function or within a static object that needs to retain it&#8217;s own config data between method calls. In this [...]]]></description>
		<wfw:commentRss>http://phpblog.info/2008/07/26/when-to-use-static-php-variables/feed</wfw:commentRss>
		</item>
		<item>
		<title>Using Apache ErrorDocument to create a content management system</title>
		<link>http://phpblog.info/2008/07/21/using-apache-errordocument-to-create-a-content-management-system</link>
		<comments>http://phpblog.info/2008/07/21/using-apache-errordocument-to-create-a-content-management-system#comments</comments>
		<pubDate>Mon, 21 Jul 2008 10:01:30 +0000</pubDate>
		<dc:creator>James Benson</dc:creator>
		
		<category><![CDATA[.htaccess]]></category>

		<category><![CDATA[Apache]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Website Development]]></category>

		<category><![CDATA[CMS]]></category>

		<category><![CDATA[Content Management System]]></category>

		<guid isPermaLink="false">http://justphp.co.uk/blog/?p=16</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
digg_url = 'http://phpblog.info/2008/07/21/using-apache-errordocument-to-create-a-content-management-system';
digg_bgcolor = '#FFFFFF';
digg_skin = 'compact';
digg_window = 'new';
digg_title = 'Using Apache ErrorDocument to create a content management system';
digg_bodytext = 'With Apache comes the ability to create a custom 404 Not Found error page, in this article I highlight a simple method I use to leverage the power of this handy little feature.

If you use PHP and apache you can configure a .htaccess file to use a custom...';
digg_media = 'news';
digg_topic = '';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
With Apache comes the ability to create a custom 404 Not Found error page, in this article I highlight a simple method I use to leverage the power of this handy little feature.

If you use PHP and apache you can configure a .htaccess file to use a custom 404 Not Found error page with one [...]]]></description>
		<wfw:commentRss>http://phpblog.info/2008/07/21/using-apache-errordocument-to-create-a-content-management-system/feed</wfw:commentRss>
		</item>
		<item>
		<title>justPHP now have a blog</title>
		<link>http://phpblog.info/2008/07/20/justphp-now-have-a-blog</link>
		<comments>http://phpblog.info/2008/07/20/justphp-now-have-a-blog#comments</comments>
		<pubDate>Sun, 20 Jul 2008 06:03:42 +0000</pubDate>
		<dc:creator>James Benson</dc:creator>
		
		<category><![CDATA[justPHP]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://justphp.co.uk/blog/?p=3</guid>
		<description><![CDATA[<div style="float: right; width: 42px; padding-right: 10px; margin: 0 0 0 10px;"><script type="text/javascript">
digg_url = 'http://phpblog.info/2008/07/20/justphp-now-have-a-blog';
digg_bgcolor = '#FFFFFF';
digg_skin = 'compact';
digg_window = 'new';
digg_title = 'justPHP now have a blog';
digg_bodytext = 'justPHP.co.uk now have a blog at phpblog.info
You can keep up to date with the latest developments, news, tips, tricks and grumbles among other useful and maybe not so useful stuff through the justPHP blog. Subscribe to the RSS feed to be notified when...';
digg_media = 'news';
digg_topic = '';
</script>
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script>
</div>
justPHP.co.uk now have a blog at phpblog.info
You can keep up to date with the latest developments, news, tips, tricks and grumbles among other useful and maybe not so useful stuff through the justPHP blog. Subscribe to the RSS feed to be notified when new posts become available.
]]></description>
		<wfw:commentRss>http://phpblog.info/2008/07/20/justphp-now-have-a-blog/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
