<?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>ITTreats.com &#187; php interview</title>
	<atom:link href="http://www.ittreats.com/tag/php-interview/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ittreats.com</link>
	<description>Find Programminng Articles on Microsoft Technologies ASP.NET,C#.NET, SUN Technologies JAVA/J2EE, Popular open source PHP</description>
	<lastBuildDate>Sun, 11 Dec 2011 08:25:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP Interview Questions and Answers  Part-5</title>
		<link>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-5.html</link>
		<comments>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-5.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 08:07:23 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Interview questions]]></category>
		<category><![CDATA[PHP Interview Questions and Answers  Part-5]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=48</guid>
		<description><![CDATA[PHP Interview Questions and Answers Part-5 How can we get second of the current time using date function? $second = date(&#8220;s&#8221;); What is the maximum size of a file that can be uploaded using PHP and how can we change this? You can change maximum size of a file set upload_max_filesize variable in php.ini file [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-5.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Interview Questions and Answers  Part-4</title>
		<link>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-4.html</link>
		<comments>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-4.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 08:05:09 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Interview questions]]></category>
		<category><![CDATA[PHP Interview Questions and Answers  Part-4]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=45</guid>
		<description><![CDATA[PHP Interview Questions and Answers Part-4 What are the differences between mysql_fetch_array(), mysql_fetch_object(), mysql_fetch_row()? Answer 1: mysql_fetch_array() -&#62; Fetch a result row as a combination of associative array and regular array. mysql_fetch_object() -&#62; Fetch a result row as an object. mysql_fetch_row() -&#62; Fetch a result set as a regular array(). Answer 2: The difference between [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-4.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Interview Questions and Answers  Part-3</title>
		<link>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-3.html</link>
		<comments>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-3.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 08:01:00 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Interview questions]]></category>
		<category><![CDATA[PHP Interview Questions and Answers  Part-3]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=43</guid>
		<description><![CDATA[PHP Interview Questions and Answers Part-3 For printing out strings, there are echo, print and printf. Explain the differences. echo is the most primitive of them, and just outputs the contents following the construct to the screen. print is also a construct (so parentheses are optional when calling it), but it returns TRUE on successful [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Interview Questions and Answers  Part 2</title>
		<link>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-2.html</link>
		<comments>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-2.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 07:55:23 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Interview questions]]></category>
		<category><![CDATA[PHP Interview Questions and Answers  Part-2]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=41</guid>
		<description><![CDATA[How can we send mail using JavaScript? No. There is no way to send emails directly using JavaScript. But you can use JavaScript to execute a client side email program send the email using the &#8220;mailto&#8221; code. Here is an example: function myfunction(form) { tdata=document.myform.tbox1.value; location=&#8221;mailto:mailid@domain.com?subject=&#8230;&#8221;; return true; } What is the functionality of the [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Interview Questions and Answers  Part 1</title>
		<link>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-1.html</link>
		<comments>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-1.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 07:49:54 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Interview questions]]></category>
		<category><![CDATA[PHP Interview Questions and Answers  Part-1]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=38</guid>
		<description><![CDATA[PHP Interview Questions and Answers Part-1 What&#8217;s PHP The PHP Hypertext Preprocessor is a programming language that allows web developers to create dynamic content that interacts with databases. PHP is basically used for developing web based software applications. What Is a Session? A session is a logical object created by the PHP engine to allow [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-interview-questions-and-answers-part-1.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP pagination tutorial</title>
		<link>http://www.ittreats.com/os/php/php-pagination-tutorial.html</link>
		<comments>http://www.ittreats.com/os/php/php-pagination-tutorial.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 07:38:15 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[paginating in PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[PHP Pagination]]></category>
		<category><![CDATA[php tutorials]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=29</guid>
		<description><![CDATA[Use Pagination to display results of your MySQL query over multiple pages in PHP. This php pagination tutorial will help you out in sorting out problems with pagination As your database grows, showing all the results of a query on a single page is no longer practical. This is where pagination comes in handy. You [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/php-pagination-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sessions in PHP</title>
		<link>http://www.ittreats.com/os/php/sessions-in-php.html</link>
		<comments>http://www.ittreats.com/os/php/sessions-in-php.html#comments</comments>
		<pubDate>Sun, 08 Mar 2009 07:30:32 +0000</pubDate>
		<dc:creator>adrevol</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[php interview]]></category>
		<category><![CDATA[php sessions]]></category>
		<category><![CDATA[php tutorials]]></category>
		<category><![CDATA[sessions in php]]></category>
		<category><![CDATA[using sessions in php]]></category>

		<guid isPermaLink="false">http://www.ittreats.com/?p=23</guid>
		<description><![CDATA[Using Sessions in PHP Session variables hold information about one single user, and are available to all pages in one application. over internet to maintain state of the user we will use sessions, sessions are temporary, by a unique id web server will keep the user data in the web server with which user state [...]]]></description>
		<wfw:commentRss>http://www.ittreats.com/os/php/sessions-in-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

