<?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>From the bottom up</title>
	<atom:link href="http://herbert.burzlaff.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://herbert.burzlaff.com</link>
	<description>You have to start some where</description>
	<pubDate>Thu, 12 Nov 2009 17:35:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>PHP&#8217;s implode() in MySQL</title>
		<link>http://herbert.burzlaff.com/2009/11/12/phps-implode-in-mysql/</link>
		<comments>http://herbert.burzlaff.com/2009/11/12/phps-implode-in-mysql/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:35:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=78</guid>
		<description><![CDATA[Here is a quick tip, to get similar result as php&#8217;s array implode function inside of MySQL use GROUP_CONCAT() here is a quick example
SELECT store_orders.*,
(SELECT GROUP_CONCAT(item_name) FROM `store_orderitems` WHERE store_orders.id=store_orderitems.order_id) AS items_purchased
FROM `store_orders`
]]></description>
			<content:encoded><![CDATA[<p>Here is a quick tip, to get similar result as php&#8217;s array implode function inside of MySQL use GROUP_CONCAT() here is a quick example</p>
<p><code>SELECT store_orders.*,<br />
(SELECT GROUP_CONCAT(item_name) FROM `store_orderitems` WHERE store_orders.id=store_orderitems.order_id) AS items_purchased<br />
FROM `store_orders`</code></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/11/12/phps-implode-in-mysql/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Mysql Drivers/Extensions: mysql_ is out, use mysqli_ or pdo</title>
		<link>http://herbert.burzlaff.com/2009/11/10/mysql-driversextensions-mysql_-is-out-use-mysqli_-or-pdo/</link>
		<comments>http://herbert.burzlaff.com/2009/11/10/mysql-driversextensions-mysql_-is-out-use-mysqli_-or-pdo/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 15:29:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=76</guid>
		<description><![CDATA[Here is a good article on mysql_ vs mysqli vs pdo, its cleraly stated that mysql_ should no longer be used.
Which PHP Driver for MySQL should I use
]]></description>
			<content:encoded><![CDATA[<p>Here is a good article on mysql_ vs mysqli vs pdo, its cleraly stated that mysql_ should no longer be used.</p>
<p><a href="http://forge.mysql.com/wiki/Which_PHP_Driver_for_MySQL_should_I_use">Which PHP Driver for MySQL should I use</a></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/11/10/mysql-driversextensions-mysql_-is-out-use-mysqli_-or-pdo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Webcasts</title>
		<link>http://herbert.burzlaff.com/2009/07/16/free-webcasts/</link>
		<comments>http://herbert.burzlaff.com/2009/07/16/free-webcasts/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 14:24:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=74</guid>
		<description><![CDATA[http://www.phparch.com/conferences/webcasts
With recordings of past webcasts.
Thanks PHP Architect
]]></description>
			<content:encoded><![CDATA[<p>http://www.phparch.com/conferences/webcasts</p>
<p>With recordings of past webcasts.</p>
<p>Thanks PHP Architect</p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/07/16/free-webcasts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Food for Thought: Software Engineering In PHP</title>
		<link>http://herbert.burzlaff.com/2009/05/15/food-for-thought-software-engineering-in-php/</link>
		<comments>http://herbert.burzlaff.com/2009/05/15/food-for-thought-software-engineering-in-php/#comments</comments>
		<pubDate>Fri, 15 May 2009 19:14:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=72</guid>
		<description><![CDATA[Some slides to think about
PHPAustin Meetup Slides - Software Engineering In PHP
]]></description>
			<content:encoded><![CDATA[<p>Some slides to think about</p>
<h2><a title="Permanent Link to PHPAustin Meetup Slides - Software Engineering In PHP" rel="bookmark" href="http://ralphschindler.com/2009/05/15/phpaustin-meetup-slides-software-engineering-in-php">PHPAustin Meetup Slides - Software Engineering In PHP</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/05/15/food-for-thought-software-engineering-in-php/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Article explaining Dependency Injection</title>
		<link>http://herbert.burzlaff.com/2009/03/26/article-explaining-dependency-injection/</link>
		<comments>http://herbert.burzlaff.com/2009/03/26/article-explaining-dependency-injection/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 14:17:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=70</guid>
		<description><![CDATA[What is Dependency Injection? - Fabien Potencier

]]></description>
			<content:encoded><![CDATA[<h4><a href="http://fabien.potencier.org/article/11/what-is-dependency-injection">What is Dependency Injection?</a> - Fabien Potencier<a href="http://fabien.potencier.org/article/11/what-is-dependency-injection"><br />
</a></h4>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/03/26/article-explaining-dependency-injection/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery Plugin Tutorial</title>
		<link>http://herbert.burzlaff.com/2009/03/12/jquery-plugin-tutorial/</link>
		<comments>http://herbert.burzlaff.com/2009/03/12/jquery-plugin-tutorial/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 13:15:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=68</guid>
		<description><![CDATA[http://webcloud.se/article/Building_jQuery_plugins
]]></description>
			<content:encoded><![CDATA[<p><a href="http://webcloud.se/article/Building_jQuery_plugins" target="_blank">http://webcloud.se/article/Building_jQuery_plugins</a></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/03/12/jquery-plugin-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hahahaha</title>
		<link>http://herbert.burzlaff.com/2009/03/09/hahahaha/</link>
		<comments>http://herbert.burzlaff.com/2009/03/09/hahahaha/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 13:49:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=65</guid>
		<description><![CDATA[http://www.phpro.org/examples/PHP-Bullshit-Meter.html
]]></description>
			<content:encoded><![CDATA[<p><a title="Bullshit Meter" href="http://www.phpro.org/examples/PHP-Bullshit-Meter.html" target="_blank">http://www.phpro.org/examples/PHP-Bullshit-Meter.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/03/09/hahahaha/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free Book - Zend Framework: Surviving The Deep End</title>
		<link>http://herbert.burzlaff.com/2009/01/12/free-book-zend-framework-surviving-the-deep-end/</link>
		<comments>http://herbert.burzlaff.com/2009/01/12/free-book-zend-framework-surviving-the-deep-end/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 16:46:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=63</guid>
		<description><![CDATA[Zend Framework: Surviving The Deep End
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.survivethedeepend.com/" target="_blank">Zend Framework: Surviving The Deep End</a></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2009/01/12/free-book-zend-framework-surviving-the-deep-end/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Holiday Project</title>
		<link>http://herbert.burzlaff.com/2008/12/09/holiday-project/</link>
		<comments>http://herbert.burzlaff.com/2008/12/09/holiday-project/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 14:57:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=60</guid>
		<description><![CDATA[The Jobeet Tutorial
]]></description>
			<content:encoded><![CDATA[<h1><a href="http://www.symfony-project.org/jobeet/1_2/Propel/en/">The Jobeet Tutorial</a></h1>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2008/12/09/holiday-project/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Good Article: Build seven good object-oriented habits in PHP</title>
		<link>http://herbert.burzlaff.com/2008/11/03/good-article-build-seven-good-object-oriented-habits-in-php/</link>
		<comments>http://herbert.burzlaff.com/2008/11/03/good-article-build-seven-good-object-oriented-habits-in-php/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 14:30:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://herbert.burzlaff.com/?p=53</guid>
		<description><![CDATA[Here is a good article from IBM DeveloperWorks on some good object oriented principles to follow
Build seven good object-oriented habits in PHP
]]></description>
			<content:encoded><![CDATA[<p>Here is a good article from IBM DeveloperWorks on some good object oriented principles to follow<br />
<a href="http://www.ibm.com/developerworks/opensource/library/os-php-7oohabits/index.html?ca=drs-tp4408">Build seven good object-oriented habits in PHP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://herbert.burzlaff.com/2008/11/03/good-article-build-seven-good-object-oriented-habits-in-php/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
