<?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; Tips</title>
	<atom:link href="http://www.php-trivandrum.org/category/tips/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>1</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>Migration from MySQL to MSSQL &#8211; Quick Tip</title>
		<link>http://www.php-trivandrum.org/tips/migration-from-mysql-to-mssql-quick-tip/</link>
		<comments>http://www.php-trivandrum.org/tips/migration-from-mysql-to-mssql-quick-tip/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 02:25:26 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[MSSQL]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/tips/migration-from-mysql-to-mssql-quick-tip/</guid>
		<description><![CDATA[With the help of some colleagues, I could export all the indexes and primary keys, which we were using from a MySQL table as MSSQL compatiable TSQL using a union query and on the MySQL <i>information_schema</i>.
]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/migration-from-mysql-to-mssql-quick-tip/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>4</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>Needed a random timed cron; Got it</title>
		<link>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/</link>
		<comments>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 02:45:55 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=886</guid>
		<description><![CDATA[Sorry this is nothing related to php, though I wanted to run a cron job or scheduled job at a random time, searching the Internet gave me lots of ideas but I found the apt solution only yesterday.

Create a shell script

#!/bin/bash

r=$(j=`dd if=/dev/urandom count=1 2> /dev/null &#124; cksum &#124; cut -f1 -d" "`; expr $j % [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/uncategorized/needed-a-random-timed-cron-got-it/feed/</wfw:commentRss>
		<slash:comments>1</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>function is_ipaddress</title>
		<link>http://www.php-trivandrum.org/code-snippets/function-is_ipaddress/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/function-is_ipaddress/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 03:43:39 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=152</guid>
		<description><![CDATA[Well this may not be new to you all, but still, when I was on the lookout how I could validate an ip address, all the regular expression techniques either failed on valid addresses or bloated too much. The out come was wrote a piece of code which may help others if this is correct, [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/function-is_ipaddress/feed/</wfw:commentRss>
		<slash:comments>2</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>sqlite3; I am falling in love..</title>
		<link>http://www.php-trivandrum.org/code-snippets/sqlite3-i-am-falling-in-love/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/sqlite3-i-am-falling-in-love/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 18:07:31 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/?p=139</guid>
		<description><![CDATA[After about a decade of php and mysql, with just deviating only in the scripting or language area, today morining, I felt like digging into the sqlite3, which a lot of people are referring to, and some good RIA players are paying attention to also. The big names that sqlite website brags about are Adobe, [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/sqlite3-i-am-falling-in-love/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>Using Foreign Keys in MySQL</title>
		<link>http://www.php-trivandrum.org/tips/using-foreign-keys-in-mysql/</link>
		<comments>http://www.php-trivandrum.org/tips/using-foreign-keys-in-mysql/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 05:17:26 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/tips/using-foreign-keys-in-mysql.html</guid>
		<description><![CDATA[On the article at php&#124;architect, Ligaya Turmelle explains you how to handle Foreign Keys in MySQL so they can serve your whims.
No, foreign keys aren&#8217;t from Brazil or Italy or even the US. Though they can be a bit strange to those who do not understand them, have no fear. We are here to teach [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/using-foreign-keys-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building File Uploaders :: Object Method</title>
		<link>http://www.php-trivandrum.org/tips/building-file-uploaders-object-method/</link>
		<comments>http://www.php-trivandrum.org/tips/building-file-uploaders-object-method/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 07:00:16 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/tips/building-file-uploaders-object-method.html</guid>
		<description><![CDATA[On DevShed there&#8217;s a new tutorial showing how to build file upload functionality into your scripts.

 If you&#8217;re a PHP developer who has built a certain number of web applications, then it&#8217;s quite probable that you&#8217;ve already worked with HTTP file uploads. [...] First I&#8217;m going to teach you how to handle file uploads using [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/building-file-uploaders-object-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>php wrapper for zapatec tree widget</title>
		<link>http://www.php-trivandrum.org/code-snippets/php-wrapper-for-zapatec-tree-widget/</link>
		<comments>http://www.php-trivandrum.org/code-snippets/php-wrapper-for-zapatec-tree-widget/#comments</comments>
		<pubDate>Wed, 25 Oct 2006 06:26:15 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php snippets]]></category>
		<category><![CDATA[php wrapper]]></category>
		<category><![CDATA[Zapatec]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/10/25/php-wrapper-for-zapatec-tree-widget/</guid>
		<description><![CDATA[To quote the zapatec site &#8221;   The Zapatec  DHTML Tree  is an easy, attractive, and versatile way to display  information. You can use the DHTML tree as a menu, a site map, or a way to  display your data. Our DHTML Tree works in many different browsers, but if [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/code-snippets/php-wrapper-for-zapatec-tree-widget/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP &#8211; Quotes or No quotes in associative Array?</title>
		<link>http://www.php-trivandrum.org/tips/quotes-or-no-quotes-in-associative-array/</link>
		<comments>http://www.php-trivandrum.org/tips/quotes-or-no-quotes-in-associative-array/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 18:28:48 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[speedup php pages]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/14/quotes-or-no-quotes-in-associative-array/</guid>
		<description><![CDATA[Our team was having a debate on why we should put a &#8216; (single quote) when referencing arrays in php. Well what is the problem if we use $_SESSION[key], instead of $_SESSION['key'].
Well when you think that when encountering non functions or keywords, php tries to evaluate it as a declared constant. So referencing  $_SESSION['key'] [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/quotes-or-no-quotes-in-associative-array/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Single Quotes vs Double Quotes!</title>
		<link>http://www.php-trivandrum.org/tips/single-quotes-vs-double-quotes/</link>
		<comments>http://www.php-trivandrum.org/tips/single-quotes-vs-double-quotes/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 18:22:48 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[php tips]]></category>
		<category><![CDATA[speedup php pages]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/14/single-quotes-vs-double-quotes/</guid>
		<description><![CDATA[I recommend using &#8216; (single quotes) when programming with PHP; Always use &#8216; (single quotes) unless you need the features of &#8221; (double quotes). You might think it&#8217;s much easier to write code as:
echo "Today is the $day of $month";
However, using single quotes forces variables to be outside the quotes; instead when you use the [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/single-quotes-vs-double-quotes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>error_reporting(E_ALL); make code faster</title>
		<link>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/</link>
		<comments>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 18:17:11 +0000</pubDate>
		<dc:creator>jijutm</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[error reporting]]></category>
		<category><![CDATA[fast code]]></category>
		<category><![CDATA[php tips]]></category>

		<guid isPermaLink="false">http://www.php-trivandrum.org/2006/09/14/error_reportinge_all-make-code-faster/</guid>
		<description><![CDATA[The single most important thing I tell people who use PHP is to turn error reporting to its maximum level. Why would I want to do this? Generally the error reporting is set at a level that will hide many little things like:

declaring a variable ahead of time,
referencing a variable that is not available in [...]]]></description>
		<wfw:commentRss>http://www.php-trivandrum.org/tips/error_reportinge_all-make-code-faster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
