<?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 for PHP MySQL Brain</title>
	<atom:link href="http://www.phpmysqlbrain.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpmysqlbrain.com</link>
	<description>PHP MySQL &#124; PHP Tutorials &#124; MySQL Tutorials &#124; PHP Scripts &#124; Programming Samples</description>
	<lastBuildDate>Wed, 21 Sep 2011 14:26:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on PHP array_key_exists &#8211; checking a key exist in array by admin</title>
		<link>http://www.phpmysqlbrain.com/syntax/php-array_key_exists-checking-a-key-exist-in-array/comment-page-1/#comment-10149</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=243#comment-10149</guid>
		<description>Most of the PHP beginners are unaware about the array_key_exists function. Instead of that they do loop through the array and using if condition . That&#039;s quite bad method on performance wise, because it will consume more time and resources. So always use this function for your key search in an array.</description>
		<content:encoded><![CDATA[<p>Most of the PHP beginners are unaware about the array_key_exists function. Instead of that they do loop through the array and using if condition . That&#8217;s quite bad method on performance wise, because it will consume more time and resources. So always use this function for your key search in an array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Prime Number list generation PHP script by admin</title>
		<link>http://www.phpmysqlbrain.com/scripts/a-prime-number-list-generation-php-script/comment-page-1/#comment-31</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 18 Aug 2010 13:51:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=272#comment-31</guid>
		<description>We can use the same logic in this program to check a number is primer number or not .</description>
		<content:encoded><![CDATA[<p>We can use the same logic in this program to check a number is primer number or not .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Array in PHP tutorial by admin</title>
		<link>http://www.phpmysqlbrain.com/phpbasic/array-in-php-tutorial/comment-page-1/#comment-30</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 18 Aug 2010 12:38:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=111#comment-30</guid>
		<description>Arrays are for storing the data temporary only , when we leave the script data in array automatically deleted in the server... That&#039;s why we use database tables for permanent storage of data .</description>
		<content:encoded><![CDATA[<p>Arrays are for storing the data temporary only , when we leave the script data in array automatically deleted in the server&#8230; That&#8217;s why we use database tables for permanent storage of data .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP trim() &#8211; Remove whitespace from string by admin</title>
		<link>http://www.phpmysqlbrain.com/syntax/php-trim-remove-whitespace-from-string/comment-page-1/#comment-26</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 11 Aug 2010 12:11:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=232#comment-26</guid>
		<description>And note this function wont affect the contents in the middle of a string ... It will affect only the starting and end of a string ... If you want to remove some characters or whitespaces in the middle of string we need to use some other functions ...</description>
		<content:encoded><![CDATA[<p>And note this function wont affect the contents in the middle of a string &#8230; It will affect only the starting and end of a string &#8230; If you want to remove some characters or whitespaces in the middle of string we need to use some other functions &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on File Upload in PHP by admin</title>
		<link>http://www.phpmysqlbrain.com/syntax/file-upload-in-php/comment-page-1/#comment-25</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 09 Aug 2010 12:32:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=227#comment-25</guid>
		<description>Maximum size for the uploading file is limited by php.ini , We can set the limit by editing php.ini</description>
		<content:encoded><![CDATA[<p>Maximum size for the uploading file is limited by php.ini , We can set the limit by editing php.ini</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP fwrite() &#8211; writing to a file by admin</title>
		<link>http://www.phpmysqlbrain.com/syntax/php-fwrite-writing-to-a-file/comment-page-1/#comment-23</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Sat, 07 Aug 2010 11:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=214#comment-23</guid>
		<description>We can copy another file using fopen ,fread and fwrite. Simply open a file using fopen , and then store the contents of that file to a variable using fread , and then write that variable to another file using fwrite.</description>
		<content:encoded><![CDATA[<p>We can copy another file using fopen ,fread and fwrite. Simply open a file using fopen , and then store the contents of that file to a variable using fread , and then write that variable to another file using fwrite.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP include file by Tuttu</title>
		<link>http://www.phpmysqlbrain.com/phpbasic/php-include-file/comment-page-1/#comment-22</link>
		<dc:creator>Tuttu</dc:creator>
		<pubDate>Fri, 06 Aug 2010 06:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=120#comment-22</guid>
		<description>Can we include any type of files ? can I write PHP codes in a .txt file and include that file in another PHP file ?</description>
		<content:encoded><![CDATA[<p>Can we include any type of files ? can I write PHP codes in a .txt file and include that file in another PHP file ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on elseif statement in PHP by Sari</title>
		<link>http://www.phpmysqlbrain.com/syntax/elseif-statement-in-php/comment-page-1/#comment-21</link>
		<dc:creator>Sari</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:17:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=74#comment-21</guid>
		<description>Ohh its look like same as other programming. I am a beginner in PHP. Going to start my PHP learning. I like this website. Going to use heavily.</description>
		<content:encoded><![CDATA[<p>Ohh its look like same as other programming. I am a beginner in PHP. Going to start my PHP learning. I like this website. Going to use heavily.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on for in PHP loop programming by Praveen</title>
		<link>http://www.phpmysqlbrain.com/syntax/for-in-php-loop-programming/comment-page-1/#comment-20</link>
		<dc:creator>Praveen</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:12:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=97#comment-20</guid>
		<description>I dont think PHP for statement&#039;s syntax is that much complex.Comparing with our statements it may.Personally I like to prefer for statement in my PHP programming.Its really good have all the required expressions within a single statements itself rather than the use of several other variables and unwanted checking.</description>
		<content:encoded><![CDATA[<p>I dont think PHP for statement&#8217;s syntax is that much complex.Comparing with our statements it may.Personally I like to prefer for statement in my PHP programming.Its really good have all the required expressions within a single statements itself rather than the use of several other variables and unwanted checking.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on foreach array in PHP programming by Priya</title>
		<link>http://www.phpmysqlbrain.com/syntax/foreach-array-in-php-programming/comment-page-1/#comment-19</link>
		<dc:creator>Priya</dc:creator>
		<pubDate>Tue, 03 Aug 2010 18:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.phpmysqlbrain.com/?p=99#comment-19</guid>
		<description>Good tutorial about foreach statement.I got a clear picture now. Thank You</description>
		<content:encoded><![CDATA[<p>Good tutorial about foreach statement.I got a clear picture now. Thank You</p>
]]></content:encoded>
	</item>
</channel>
</rss>

