<?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: PHP Echo Vs Print</title>
	<atom:link href="http://www.learnphponline.com/php-basics/php-echo-vs-print/feed" rel="self" type="application/rss+xml" />
	<link>http://www.learnphponline.com/php-basics/php-echo-vs-print</link>
	<description>Learn PHP Online</description>
	<lastBuildDate>Sun, 07 Mar 2010 15:56:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: abhijeet jadhav</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1715</link>
		<dc:creator>abhijeet jadhav</dc:creator>
		<pubDate>Tue, 02 Mar 2010 04:53:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1715</guid>
		<description>if 
 $V=123;
 echo $v;


what is o/p?</description>
		<content:encoded><![CDATA[<p>if<br />
 $V=123;<br />
 echo $v;</p>
<p>what is o/p?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohamed Ismail</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1564</link>
		<dc:creator>Mohamed Ismail</dc:creator>
		<pubDate>Sat, 06 Feb 2010 10:29:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1564</guid>
		<description>really i am not expecting this much of explantion for diffrence between echo and print when i started to search. very very useful. Thanx</description>
		<content:encoded><![CDATA[<p>really i am not expecting this much of explantion for diffrence between echo and print when i started to search. very very useful. Thanx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Juan Giordana</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1475</link>
		<dc:creator>Juan Giordana</dc:creator>
		<pubDate>Thu, 21 Jan 2010 21:36:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1475</guid>
		<description>It would be better for newcomers to use single quotes in the examples.</description>
		<content:encoded><![CDATA[<p>It would be better for newcomers to use single quotes in the examples.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pim</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1371</link>
		<dc:creator>Pim</dc:creator>
		<pubDate>Tue, 05 Jan 2010 13:10:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1371</guid>
		<description>In addition to the difference between print and echo, I am interested in the difference between printing or echoing on the one hand and falling out of PHP code on the other.
So that would be

(PHP processing here); echo &quot;some plain text&quot;; (more PHP processing);

versus

(PHP processing here); ?&gt;some plain text&lt;?php (more PHP processing);

I can&#039;t see much difference in performance, but what are other arguments for or against?</description>
		<content:encoded><![CDATA[<p>In addition to the difference between print and echo, I am interested in the difference between printing or echoing on the one hand and falling out of PHP code on the other.<br />
So that would be</p>
<p>(PHP processing here); echo &#8220;some plain text&#8221;; (more PHP processing);</p>
<p>versus</p>
<p>(PHP processing here); ?&gt;some plain text&lt;?php (more PHP processing);</p>
<p>I can&#039;t see much difference in performance, but what are other arguments for or against?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bundyxc</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1276</link>
		<dc:creator>bundyxc</dc:creator>
		<pubDate>Mon, 21 Dec 2009 08:50:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1276</guid>
		<description>@bw: print is a language construct. I&#039;m curious though... under what circumstance would print/echo return boolean false?</description>
		<content:encoded><![CDATA[<p>@bw: print is a language construct. I&#8217;m curious though&#8230; under what circumstance would print/echo return boolean false?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anthoni Raj</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-1080</link>
		<dc:creator>Anthoni Raj</dc:creator>
		<pubDate>Mon, 23 Nov 2009 04:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-1080</guid>
		<description>now i know the difference bitween print and echo...</description>
		<content:encoded><![CDATA[<p>now i know the difference bitween print and echo&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vo Thanh Liem</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-922</link>
		<dc:creator>Vo Thanh Liem</dc:creator>
		<pubDate>Sun, 25 Oct 2009 00:16:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-922</guid>
		<description>i knew which i should use now. This article really useful to me. Thanks!</description>
		<content:encoded><![CDATA[<p>i knew which i should use now. This article really useful to me. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bw</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-889</link>
		<dc:creator>bw</dc:creator>
		<pubDate>Fri, 16 Oct 2009 19:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-889</guid>
		<description>Thanks for insight but I&#039;m still confused: is print a function or not? I&#039;m new to PHP but having learned C++ and Java, I thought only functions had return values. And according to the PHP book I&#039;m reading, print returns boolean values.</description>
		<content:encoded><![CDATA[<p>Thanks for insight but I&#8217;m still confused: is print a function or not? I&#8217;m new to PHP but having learned C++ and Java, I thought only functions had return values. And according to the PHP book I&#8217;m reading, print returns boolean values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grand Poobah</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-867</link>
		<dc:creator>Grand Poobah</dc:creator>
		<pubDate>Sat, 10 Oct 2009 21:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-867</guid>
		<description>Great info! Just what I was wondering myself. One thing I&#039;m wondering about is adding the parenthesis to the code. Is there ever any benefit in using it with either echo or print?

Like this...

1. echo (&quot;Some Text&quot;);

Or...

2. echo &quot;Some Text&quot;;

Since neither echo nor print is a function it seems to be a waste, and yet I see coders doing it all of the time.</description>
		<content:encoded><![CDATA[<p>Great info! Just what I was wondering myself. One thing I&#8217;m wondering about is adding the parenthesis to the code. Is there ever any benefit in using it with either echo or print?</p>
<p>Like this&#8230;</p>
<p>1. echo (&#8220;Some Text&#8221;);</p>
<p>Or&#8230;</p>
<p>2. echo &#8220;Some Text&#8221;;</p>
<p>Since neither echo nor print is a function it seems to be a waste, and yet I see coders doing it all of the time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: janis</title>
		<link>http://www.learnphponline.com/php-basics/php-echo-vs-print/comment-page-1#comment-785</link>
		<dc:creator>janis</dc:creator>
		<pubDate>Tue, 15 Sep 2009 01:01:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.learnphponline.com/?p=24#comment-785</guid>
		<description>Nice article, thank u :)</description>
		<content:encoded><![CDATA[<p>Nice article, thank u <img src='http://www.learnphponline.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
