<?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>PHP Trivandrum &#187; PHP</title>
	<atom:link href="http://www.php-trivandrum.org/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.php-trivandrum.org</link>
	<description>Get addicted to PHP</description>
	<lastBuildDate>Tue, 22 Jun 2010 02:56:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A Mathematical Captcha &#8211; Reinventing the Wheel</title>
		<link>http://www.php-trivandrum.org/code-snippets/a-mathematical-captcha-reinventing-the-wheel/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/a-mathematical-captcha-reinventing-the-wheel/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 02:13:09 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=1029</guid>
		<description><![CDATA[I had seen numeric computational captcha or Mathematical captcha where one has to calculate the answer of an equation with simple arithmetic and supply the result for verification.]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/a-mathematical-captcha-reinventing-the-wheel/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Function to format bytes in human readable format</title>
		<link>http://www.php-trivandrum.org/code-snippets/function-to-format-bytes-in-human-readable-format/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/function-to-format-bytes-in-human-readable-format/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 03:40:54 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php snippets]]></category>
		<category><![CDATA[php tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=1024</guid>
		<description><![CDATA[I was digging through my old codes to get this, still could not find. Hence when I wrote it, just made a note here such that later it wont be difficult to find atleast for me.

function&#160;formatSize($size){&#160;&#160;&#160;&#160;&#160;$units&#160;=&#160;array('&#160;B',&#160;'&#160;KB',&#160;'&#160;MB',&#160;'&#160;GB',&#160;'&#160;TB');&#160;&#160;&#160;&#160;&#160;for&#160;($i&#160;=&#160;0;&#160;$size&#160;&#62;&#160;1024;&#160;$i++)&#160;{&#160;$size&#160;/=&#160;1024;&#160;}&#160;&#160;&#160;&#160;&#160;return&#160;round($size,&#160;2).$units[$i];&#160;}
format filesize, php filesize human readable
]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/function-to-format-bytes-in-human-readable-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting datetime type into JavaScript as Date object</title>
		<link>http://www.php-trivandrum.org/javascript/getting-datetime-type-into-javascript-as-date-object/</link>
		<comments>http://www.php-trivandrum.org/javascript/getting-datetime-type-into-javascript-as-date-object/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 02:49:58 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MSSQL]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=1010</guid>
		<description><![CDATA[When selecting datetime to be displayed in a JavaScript ui library, select the unix_timestamp * 1000 from the sql]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/javascript/getting-datetime-type-into-javascript-as-date-object/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick and dirty htaccess rewrite for Lighttpd</title>
		<link>http://www.php-trivandrum.org/tips/quick-and-dirty-htaccess-rewrite-for-lighttpd/</link>
		<comments>http://www.php-trivandrum.org/tips/quick-and-dirty-htaccess-rewrite-for-lighttpd/#comments</comments>
		<pubDate>Tue, 16 Feb 2010 02:00:14 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[htaccess lighttpd]]></category>
		<category><![CDATA[lighttpd rewrites for developer]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=995</guid>
		<description><![CDATA[Writing this post and am getting ready to hide behind strong walls, since mostly lighttpd is meant to fly light, or serve faster without the bloat and dynamic flexibilities. But certain situations may occur where one may have to forget the religion and behave sensibly. For a major project which was collaborated by different teams [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/quick-and-dirty-htaccess-rewrite-for-lighttpd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posting to wordpress using php cli and xmlrpc</title>
		<link>http://www.php-trivandrum.org/code-snippets/posting-to-wordpress-using-php-cli-and-xmlrpc/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/posting-to-wordpress-using-php-cli-and-xmlrpc/#comments</comments>
		<pubDate>Sun, 07 Feb 2010 20:02:09 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php cli]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xml rpc]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/code-snippets/posting-to-wordpress-using-php-cli-and-xmlrpc/</guid>
		<description><![CDATA[A reader once asked me if I could build a command line tool which takes title from one file, and content from another file to create wordpress post. I tried, which finally gave an outline to this script. I dont think that this is very high fly, but for those whom the xmlrpc is mumbo, [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/posting-to-wordpress-using-php-cli-and-xmlrpc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Migration from MySQL to MSSQL our solutions &#8211; Continued</title>
		<link>http://www.php-trivandrum.org/code-snippets/migration-from-mysql-to-mssql-our-solutions-continued/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/migration-from-mysql-to-mssql-our-solutions-continued/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 18:45:15 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[General Articles]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MSSQL]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=967</guid>
		<description><![CDATA[In the previous post, I had specified that a code analysis would be presented later on, which is happening now. Though I am not permitted to abstract the whole database abstraction, which would otherwise divulge the core business logic of the system too, I do expect that the following would be enough to guide a [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/migration-from-mysql-to-mssql-our-solutions-continued/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Short PHP twitter-counter</title>
		<link>http://www.php-trivandrum.org/code-snippets/short-php-twitter-counter/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/short-php-twitter-counter/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 18:45:04 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php twitter counter]]></category>
		<category><![CDATA[twitter counter]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/code-snippets/short-php-twitter-counter/</guid>
		<description><![CDATA[While strolling around I found some bits and pieces which I put together to get a short twitter counter in php.
&#60;?phpob_start();&#160;$json&#160;=&#160;file_get_contents("http://twitter.com/statuses/user_timeline/php_trivandrum.json?count=1");$data&#160;=&#160;json_decode($json,&#160;true);ob_get_clean();&#160;echo&#160;$data[0]['user']['followers_count'];&#160;?&#62;
Nothing more to write now..
]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/short-php-twitter-counter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importance of event logging in server side scripting</title>
		<link>http://www.php-trivandrum.org/tips/importance-of-event-logging-in-server-side-scripting/</link>
		<comments>http://www.php-trivandrum.org/tips/importance-of-event-logging-in-server-side-scripting/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 17:33:59 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[General Articles]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php command line]]></category>
		<category><![CDATA[php snippets]]></category>
		<category><![CDATA[php wrapper]]></category>
		<category><![CDATA[script logging]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=903</guid>
		<description><![CDATA[Now a days script driven web applications are getting more and more complicated with background operations and triggered events. Debugging or event tracking is tough once the application is moved into production. Fresh and aspiring programmers are always too cautious to wade into deeper waters, and always go with line by line testing. Almost always [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/importance-of-event-logging-in-server-side-scripting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using TagTheNet to generate tags on Wordpress</title>
		<link>http://www.php-trivandrum.org/code-snippets/using-tagthenet-to-generate-tags-on-wordpress/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/using-tagthenet-to-generate-tags-on-wordpress/#comments</comments>
		<pubDate>Sat, 15 Aug 2009 02:56:47 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[php command line]]></category>
		<category><![CDATA[tag the net]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=878</guid>
		<description><![CDATA[Recently on Kerala News by Asianet, though the wp-simple-tags was there, the posts were not being tagged automatically. And on a detailed check I found it was due to a misconfiguration, and once the same was done properly the tagging started smoothly. But already a set of 8K posts were there with no or unrelated [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/using-tagthenet-to-generate-tags-on-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>function array_flatten</title>
		<link>http://www.php-trivandrum.org/tips/function-array_flatten/</link>
		<comments>http://www.php-trivandrum.org/tips/function-array_flatten/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 02:14:39 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=875</guid>
		<description><![CDATA[This is not much to brag about, still we had a very large dataset as variable dimensional and variable depth, which we wanted to be sent to a custom function using prototype.js. For the data exchange we use JSON, but the varying depth and related tags, made us to do like hell in the javascript [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/function-array_flatten/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invoke shell from MySQL trigger</title>
		<link>http://www.php-trivandrum.org/code-snippets/invoke-shell-from-mysql-trigger/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/invoke-shell-from-mysql-trigger/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 14:47:04 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql trigger shell]]></category>
		<category><![CDATA[php snippets]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=479</guid>
		<description><![CDATA[No I am not insane, and after a long days search over the wide Internet, even google admitted defeat, there seemed to be no way to do this. Finally I had already dropped the idea or even let off the thing altogether. But recently for another project I needed to check in for an entirely [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/invoke-shell-from-mysql-trigger/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>FLV Streaming with PHP</title>
		<link>http://www.php-trivandrum.org/code-snippets/flv-streaming-with-php/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/flv-streaming-with-php/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 17:11:05 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[flowplayer]]></category>
		<category><![CDATA[pseudostreaming]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=148</guid>
		<description><![CDATA[For pseudostreaming I did see some of the projects and suggestions which used a serverside scripting language, to achieve the same as the plugins or modules for the web server software does. Ports in perl, php and python as well as shell was also found, but all were bloated, that they were not transparent. So I thought I would give a try.]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/flv-streaming-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scott&#8217;s Blog: Stupid Bug Reports</title>
		<link>http://www.php-trivandrum.org/php/scotts-blog-stupid-bug-reports/</link>
		<comments>http://www.php-trivandrum.org/php/scotts-blog-stupid-bug-reports/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 12:09:09 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[General Articles]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=126</guid>
		<description><![CDATA[When you make a bug report or feature request to any sort of project please check you have all of the relevant information and if you can get someone else to check it through. Try searching Google first or ask in a mailing list.
For a performance issue check against an older version of PHP to [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/scotts-blog-stupid-bug-reports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend</title>
		<link>http://www.php-trivandrum.org/php/frame-works/zend/</link>
		<comments>http://www.php-trivandrum.org/php/frame-works/zend/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 19:30:54 +0000</pubDate>
		<dc:creator>phpish</dc:creator>
				<category><![CDATA[Frame Works]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=99</guid>
		<description><![CDATA[Introduction
Extending the art &#038; spirit of PHP, Zend Framework is based on simplicity, object-oriented best practices, corporate friendly licensing, and a rigorously tested agile codebase. Zend Framework is focused on building more secure, reliable, and modern Web 2.0 applications &#038; web services, and consuming widely available APIs from leading vendors like Google, Amazon, Yahoo!, Flickr, [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/frame-works/zend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ZooP</title>
		<link>http://www.php-trivandrum.org/php/frame-works/zoop/</link>
		<comments>http://www.php-trivandrum.org/php/frame-works/zoop/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 19:30:46 +0000</pubDate>
		<dc:creator>phpish</dc:creator>
				<category><![CDATA[Frame Works]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=95</guid>
		<description><![CDATA[Introduction
The Zoop Object Oriented Php Framework (The Zoop PHP Framework for short). A framework written in and for php.
The Zoop PHP Framework is stable, scalable and portable. It has been in production use for the last 5 years and has been used in many production environments. The Zoop PHP Framework is designed to be fast, [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/frame-works/zoop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yii</title>
		<link>http://www.php-trivandrum.org/php/frame-works/yii/</link>
		<comments>http://www.php-trivandrum.org/php/frame-works/yii/#comments</comments>
		<pubDate>Wed, 31 Dec 2008 19:30:03 +0000</pubDate>
		<dc:creator>phpish</dc:creator>
				<category><![CDATA[Frame Works]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=102</guid>
		<description><![CDATA[Yii is a high-performance component-based PHP framework for developing large-scale Web applications. Yii enables maximum reusability in Web programming and can significantly accelerate the development process. The name Yii (pronounced as [i:]) stands for easy, efficient and extensible.
Yii is easy to learn and use. You only need to know PHP and object-oriented programming. You are [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/frame-works/yii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gzip nusoap requests</title>
		<link>http://www.php-trivandrum.org/tips/gzip-nusoap-requests/</link>
		<comments>http://www.php-trivandrum.org/tips/gzip-nusoap-requests/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 16:22:27 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/tips/gzip-nusoap-requests.html</guid>
		<description><![CDATA[Recently for a project involving travelport xml api integration, we badly needed the soap requests to be gzipped, since the technical support people suggested. Also we were aware of the benefits of using gzEncoded data when transmitting through the Internet. For the same we checked the wid internet searching with all sort of combinations of [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/gzip-nusoap-requests/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP; Towards a 5.3 release</title>
		<link>http://www.php-trivandrum.org/php/php-towards-a-53-release/</link>
		<comments>http://www.php-trivandrum.org/php/php-towards-a-53-release/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 02:26:24 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[General Articles]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/php/php-towards-a-53-release.html</guid>
		<description><![CDATA[Straight from the php internals discussion:
Items on the list as the key features of this release
1) namespaces
Here we need to make sure that the current state is now in a coherent  state. I think Derick still has some issues with the recent change  by Greg, but even his criticism did not sound all [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/php-towards-a-53-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>protoype.js: Deep Category Select; Ajax</title>
		<link>http://www.php-trivandrum.org/javascript/protoypejs-deep-category-select-ajax/</link>
		<comments>http://www.php-trivandrum.org/javascript/protoypejs-deep-category-select-ajax/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 02:54:13 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/javascript/protoypejs-deep-category-select-ajax.html</guid>
		<description><![CDATA[I was experimenting with the prototype.js library, thanks to all who have contributed towards this, and the wonderful documentations avaliable as download, as well as online references.
For a multilevel hierarchical selector of category, where the top levels should not be selectable, the existing ui elements were not enough to show off, with out incurring ambiguity. [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/javascript/protoypejs-deep-category-select-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP 5.3 upto 30% performance boost</title>
		<link>http://www.php-trivandrum.org/php/php-53-upto-30-performance-boost/</link>
		<comments>http://www.php-trivandrum.org/php/php-53-upto-30-performance-boost/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 02:52:56 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/code-snippets/php-53-upto-30-performance-boost.html</guid>
		<description><![CDATA[As Johannes Schluter mentions, the results of some benchmarking have been posted concerning the performance of PHP 5.3 versus the current 5.2 series:

 Dmitry posted results of performance test comparing PHP 5.2 and 5.3 to internals which are impressive numbers.

The improvements were measured based on several popular pieces of software like Drupal, typo3 and WordPress. [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/php/php-53-upto-30-performance-boost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
