<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 50+ PHP optimisation tips revisited</title>
	<atom:link href="/posts/50-php-optimisation-tips-revisited/feed" rel="self" type="application/rss+xml" />
	<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited</link>
	<description>The research of an internet entrepreneur and IT consultant</description>
	<lastBuildDate>Mon, 26 Jul 2010 19:09:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Faruq Shaik</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-211101</link>
		<dc:creator>Faruq Shaik</dc:creator>
		<pubDate>Thu, 17 Jun 2010 06:48:34 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-211101</guid>
		<description>Good article for php beginners .  Thanks .</description>
		<content:encoded><![CDATA[<p>Good article for php beginners .  Thanks .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Must Read PHP Articles and Resources &#171; UR-Technology</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-200122</link>
		<dc:creator>Must Read PHP Articles and Resources &#171; UR-Technology</dc:creator>
		<pubDate>Sun, 07 Mar 2010 02:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-200122</guid>
		<description>[...] 50+ PHP optimisation tips revisited [...]</description>
		<content:encoded><![CDATA[<p>[...] 50+ PHP optimisation tips revisited [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 50+ PHP optimisation tips revisited &#171; HudchewMan&#39;s Diary</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-195048</link>
		<dc:creator>50+ PHP optimisation tips revisited &#171; HudchewMan&#39;s Diary</dc:creator>
		<pubDate>Tue, 26 Jan 2010 07:01:29 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-195048</guid>
		<description>[...] ที่มา HM2K.com [...]</description>
		<content:encoded><![CDATA[<p>[...] ที่มา HM2K.com [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Genta</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-193903</link>
		<dc:creator>Genta</dc:creator>
		<pubDate>Wed, 13 Jan 2010 17:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-193903</guid>
		<description>You are great</description>
		<content:encoded><![CDATA[<p>You are great</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 45 Must Read PHP Articles and Resources</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-193515</link>
		<dc:creator>45 Must Read PHP Articles and Resources</dc:creator>
		<pubDate>Fri, 08 Jan 2010 17:46:44 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-193515</guid>
		<description>[...] 50+ PHP optimisation tips revisited [...]</description>
		<content:encoded><![CDATA[<p>[...] 50+ PHP optimisation tips revisited [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: free business directory</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-175077</link>
		<dc:creator>free business directory</dc:creator>
		<pubDate>Wed, 19 Aug 2009 10:20:24 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-175077</guid>
		<description>Great tips thanks.
As a beginner in php it will help me.</description>
		<content:encoded><![CDATA[<p>Great tips thanks.<br />
As a beginner in php it will help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dzinepress</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-173823</link>
		<dc:creator>Dzinepress</dc:creator>
		<pubDate>Mon, 10 Aug 2009 16:20:40 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-173823</guid>
		<description>really nice work you sharing here.</description>
		<content:encoded><![CDATA[<p>really nice work you sharing here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Another someone</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-173802</link>
		<dc:creator>Another someone</dc:creator>
		<pubDate>Mon, 10 Aug 2009 11:46:20 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-173802</guid>
		<description>@someone: Well it is in fact true that prepared statements sanitize user input automatically but that&#039;s not the actual usage intention behind prepared statements. They exist for repeating an SQL query template multiple times with different parameters (e.g. inserting huge amounts of data). If you&#039;re making use of a database query just once (which is the usual case in most PHP scripts) using the prepared statement mechanism, you have in reality two accesses to your database (1st preparing the statement, 2nd sending the data). If you make use of a plain SQL query it is just a single database access. So just go for the string escape function where applicable.</description>
		<content:encoded><![CDATA[<p>@someone: Well it is in fact true that prepared statements sanitize user input automatically but that&#8217;s not the actual usage intention behind prepared statements. They exist for repeating an SQL query template multiple times with different parameters (e.g. inserting huge amounts of data). If you&#8217;re making use of a database query just once (which is the usual case in most PHP scripts) using the prepared statement mechanism, you have in reality two accesses to your database (1st preparing the statement, 2nd sending the data). If you make use of a plain SQL query it is just a single database access. So just go for the string escape function where applicable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: D Mali</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-171520</link>
		<dc:creator>D Mali</dc:creator>
		<pubDate>Tue, 21 Jul 2009 23:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-171520</guid>
		<description>I liked the list, but many of the citations are worthless: off-topic, unfounded or untested, etc.  I was surprised at how much conjecture was used to &#039;support&#039; conjecture.

Perhaps the sources have changed their content(?).  If not, please don&#039;t pretend to be documenting something when all that is happening is circular intuition.</description>
		<content:encoded><![CDATA[<p>I liked the list, but many of the citations are worthless: off-topic, unfounded or untested, etc.  I was surprised at how much conjecture was used to &#8217;support&#8217; conjecture.</p>
<p>Perhaps the sources have changed their content(?).  If not, please don&#8217;t pretend to be documenting something when all that is happening is circular intuition.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Someone</title>
		<link>http://hm2k.com/posts/50-php-optimisation-tips-revisited/comment-page-1#comment-171279</link>
		<dc:creator>Someone</dc:creator>
		<pubDate>Sun, 19 Jul 2009 23:08:20 +0000</pubDate>
		<guid isPermaLink="false">http://hm2k.com/?p=178#comment-171279</guid>
		<description>I disagree with all of the MySQL escape stuff. Use prepared statements and your data will be sanitised for you. http://au.php.net/manual/en/mysqli.prepare.php</description>
		<content:encoded><![CDATA[<p>I disagree with all of the MySQL escape stuff. Use prepared statements and your data will be sanitised for you. <a href="http://au.php.net/manual/en/mysqli.prepare.php" rel="nofollow">http://au.php.net/manual/en/mysqli.prepare.php</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
