<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: PHP 5.1&#8217;s Killer Feature?</title>
	<atom:link href="http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/</link>
	<description></description>
	<pubDate>Thu, 21 Aug 2008 23:11:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
		<item>
		<title>By: Kevin Yank</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-128315</link>
		<dc:creator>Kevin Yank</dc:creator>
		<pubDate>Sun, 17 Dec 2006 23:26:16 +0000</pubDate>
		<guid isPermaLink="false">#comment-128315</guid>
		<description>mysqli is a library of PHP functions for connecting to MySQL databases only. The advantage of using mysqli is that you get access to a few extra MySQL-only features. The disadvantage is that it doesn't provide some of the security features (such as prepared statements) that PDO provides, and if you should change to a different database server (say PostgreSQL), you'll need to rewrite all your database code to use a different function library.

PDO is a library of PHP objects/functions for connecting to all sorts of databases, including MySQL and PostgreSQL. It provides a number of handy security features, such as prepared statements that will sanitize dynamic values that you wish to include in your database queries (such as user input) automatically. Additionally, it doesn't tie you to using just one database server. The disadvantage is that it cuts you off from a few advanced features of the particular database you are using, but in most cases these are not features that you will need.

I highly recommend you go with PDO.</description>
		<content:encoded><![CDATA[<p>mysqli is a library of PHP functions for connecting to MySQL databases only. The advantage of using mysqli is that you get access to a few extra MySQL-only features. The disadvantage is that it doesn&#8217;t provide some of the security features (such as prepared statements) that PDO provides, and if you should change to a different database server (say PostgreSQL), you&#8217;ll need to rewrite all your database code to use a different function library.</p>
<p>PDO is a library of PHP objects/functions for connecting to all sorts of databases, including MySQL and PostgreSQL. It provides a number of handy security features, such as prepared statements that will sanitize dynamic values that you wish to include in your database queries (such as user input) automatically. Additionally, it doesn&#8217;t tie you to using just one database server. The disadvantage is that it cuts you off from a few advanced features of the particular database you are using, but in most cases these are not features that you will need.</p>
<p>I highly recommend you go with PDO.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Attila Szabo</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-127655</link>
		<dc:creator>Attila Szabo</dc:creator>
		<pubDate>Sat, 16 Dec 2006 12:26:20 +0000</pubDate>
		<guid isPermaLink="false">#comment-127655</guid>
		<description>Can someone tell me what is the difference between mysqli and PDO?
I am consdering using MySQL5.x or PostgreSQL database server but I am not sure which to use, PDO or MySQLi?</description>
		<content:encoded><![CDATA[<p>Can someone tell me what is the difference between mysqli and PDO?<br />
I am consdering using MySQL5.x or PostgreSQL database server but I am not sure which to use, PDO or MySQLi?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: www.aidezigns.com</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-31468</link>
		<dc:creator>www.aidezigns.com</dc:creator>
		<pubDate>Tue, 20 Jun 2006 14:37:38 +0000</pubDate>
		<guid isPermaLink="false">#comment-31468</guid>
		<description>"php allows you to do almost anything, mixing OO with conventional coding practices and allowing you apply clever new solutions which big OO frameworks just does not cater for."

True, that's a big reason why most people's first taste of web development is PHP. It gets the job done faster and easier, and when youre not a Software engineer, it makes you feel &lt;em&gt;talented&lt;/em&gt;.</description>
		<content:encoded><![CDATA[<p>&#8220;php allows you to do almost anything, mixing OO with conventional coding practices and allowing you apply clever new solutions which big OO frameworks just does not cater for.&#8221;</p>
<p>True, that&#8217;s a big reason why most people&#8217;s first taste of web development is PHP. It gets the job done faster and easier, and when youre not a Software engineer, it makes you feel <em>talented</em>.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Theos Blog</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-11178</link>
		<dc:creator>Theos Blog</dc:creator>
		<pubDate>Fri, 25 Nov 2005 12:39:52 +0000</pubDate>
		<guid isPermaLink="false">#comment-11178</guid>
		<description>&lt;strong&gt;In Berlin liegt Schnee und PHP5.1 ist erschienen&lt;/strong&gt;

PHP5.1 released - linked</description>
		<content:encoded><![CDATA[<p><strong>In Berlin liegt Schnee und PHP5.1 ist erschienen</strong></p>
<p>PHP5.1 released - linked</p>]]></content:encoded>
	</item>
	<item>
		<title>By: jbw</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-10444</link>
		<dc:creator>jbw</dc:creator>
		<pubDate>Thu, 03 Nov 2005 00:53:47 +0000</pubDate>
		<guid isPermaLink="false">#comment-10444</guid>
		<description>&lt;blockquote&gt;This is the first time such an abstraction layer will be completely built into PHP, and not a layer of PHP code sitting on top of it, however.&lt;/blockquote&gt;


What about dbx?</description>
		<content:encoded><![CDATA[<blockquote><p>This is the first time such an abstraction layer will be completely built into PHP, and not a layer of PHP code sitting on top of it, however.</p></blockquote>
<p>What about dbx?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-2201</link>
		<dc:creator>David</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2201</guid>
		<description>&lt;p&gt;Lets not forget the new /ext/date, which is a nice enhancement for date/time calculations&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Lets not forget the new /ext/date, which is a nice enhancement for date/time calculations</p>]]></content:encoded>
	</item>
	<item>
		<title>By: momos</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-2202</link>
		<dc:creator>momos</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2202</guid>
		<description>&lt;p&gt;I've been working on an OO database-abstraction layer for over a month now, and will probably never need it, due to PDO.&lt;/p&gt;

&lt;p&gt;So if anyone knows of a PHP-roadmap, could you please direct me there, so I stop creating useless code?&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been working on an OO database-abstraction layer for over a month now, and will probably never need it, due to PDO.</p>
<p>So if anyone knows of a PHP-roadmap, could you please direct me there, so I stop creating useless code?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ApeHanger</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-2203</link>
		<dc:creator>ApeHanger</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2203</guid>
		<description>&lt;p&gt;http://www.sebastian-bergmann.de/blog/archives/504-PHP-5.1-Performance.html#extended&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p><a href="http://www.sebastian-bergmann.de/blog/archives/504-PHP-5.1-Performance.html#extended" rel="nofollow">http://www.sebastian-bergmann.de/blog/archives/504-PHP-5.1-Performance.html#extended</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: BerislavLopac</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-2204</link>
		<dc:creator>BerislavLopac</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2204</guid>
		<description>&lt;p&gt;As I extensively use ADOdb for DB abstraction, I'm thinking about writing a Facade layer for translation of ADOdb interface to the PDO one. If I ever get the time, that is.&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>As I extensively use ADOdb for DB abstraction, I&#8217;m thinking about writing a Facade layer for translation of ADOdb interface to the PDO one. If I ever get the time, that is.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: James Golick</title>
		<link>http://www.sitepoint.com/blogs/2005/06/22/php-51s-killer-feature/#comment-2205</link>
		<dc:creator>James Golick</dc:creator>
		<pubDate>Wed, 31 Dec 1969 19:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-2205</guid>
		<description>&lt;p&gt;Added array type hinting. (Dmitry)&lt;/p&gt;

&lt;p&gt;Finally...we're starting to head in the right direction.  Type hinting!!  Now we justneed type hinting for everything else...&lt;/p&gt;

</description>
		<content:encoded><![CDATA[<p>Added array type hinting. (Dmitry)</p>
<p>Finally&#8230;we&#8217;re starting to head in the right direction.  Type hinting!!  Now we justneed type hinting for everything else&#8230;</p>]]></content:encoded>
	</item>
</channel>
</rss>
