<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: The Difference Between require() and include()</title>
	<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/</link>
	<description>Contains no moose and very litle disco. :'(</description>
	<pubDate>Fri, 21 Nov 2008 13:44:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3</generator>
		<item>
		<title>By: j</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-29096</link>
		<dc:creator>j</dc:creator>
		<pubDate>Mon, 06 Aug 2007 07:31:46 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-29096</guid>
		<description>it s very  use ful to me</description>
		<content:encoded><![CDATA[<p>it s very  use ful to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian Ferguson</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-8866</link>
		<dc:creator>Ian Ferguson</dc:creator>
		<pubDate>Tue, 27 Mar 2007 07:26:49 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-8866</guid>
		<description>Another thing to consider is that you can use include to trap and/or respond to conditions where a file cannot be included in the current script. I also remember reading documentation which suggested that 'include' was the faster of the two available language constructs.

docs say &#62;&#62;&#62; "If the file can't be included, FALSE is returned and E_WARNING is issued." </description>
		<content:encoded><![CDATA[<p>Another thing to consider is that you can use include to trap and/or respond to conditions where a file cannot be included in the current script. I also remember reading documentation which suggested that &#8216;include&#8217; was the faster of the two available language constructs.</p>
<p>docs say &gt;&gt;&gt; &#8220;If the file can&#8217;t be included, FALSE is returned and E_WARNING is issued.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Parameshwar Hegde</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-1748</link>
		<dc:creator>Parameshwar Hegde</dc:creator>
		<pubDate>Thu, 16 Nov 2006 06:04:34 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-1748</guid>
		<description>require() -&#62;files mentioned here are must for those program execution(i.e. It ll generate error and halt the program if these r not loaded)
include() -&#62; These r necessory files but it wont generate error. this ll give warning.
it is better to use requite()</description>
		<content:encoded><![CDATA[<p>require() -&gt;files mentioned here are must for those program execution(i.e. It ll generate error and halt the program if these r not loaded)<br />
include() -&gt; These r necessory files but it wont generate error. this ll give warning.<br />
it is better to use requite()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Azhar Afzal Khan,Pune</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-750</link>
		<dc:creator>Azhar Afzal Khan,Pune</dc:creator>
		<pubDate>Mon, 25 Sep 2006 17:42:27 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-750</guid>
		<description>Hi,
The principal difference between include() &#38; require() is the way they handle errors,
If an error occurs in include() method,only waening is given &#38; the script will continue its exection.
On the other hand in require() method ,no warning is not given &#38; script will halt all the way.
However, require() method is recommended.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
The principal difference between include() &amp; require() is the way they handle errors,<br />
If an error occurs in include() method,only waening is given &amp; the script will continue its exection.<br />
On the other hand in require() method ,no warning is not given &amp; script will halt all the way.<br />
However, require() method is recommended.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amol A. Bhavsar,Guruwar Peth,Pune</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-692</link>
		<dc:creator>Amol A. Bhavsar,Guruwar Peth,Pune</dc:creator>
		<pubDate>Mon, 18 Sep 2006 08:15:08 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-692</guid>
		<description>Thank you,
The principle differences between include() &#38; require() are :
(1).When “Include()”ed file is not found,only warnings will be displayed&#38; the script will continue to execute further.
But,when “require()”ed file is not found,fatal errors will be displayed &#38; the script will halt execution.
When we are dealing with non-confedintial data,
inlude()is preffered.
e.g. When we are dealing with a form which posts Sachin Tendulkar’s age &#38; no. of centuries ,after posting the form,
the variables age &#38; no.centuries will be displayed on the URL of the opened active file.
If “include()” ed file doesn’t exist ,only waning will be given &#38; the script will follow its execution afterwatds.

with including “require()” in our file ,we can safely process over confidential data ,such as user login form. Here both login ID &#38; passwords are checked &#38; script will continue only when “require()” function gets required file,otherwise,it will halt the script showing fatal error.</description>
		<content:encoded><![CDATA[<p>Thank you,<br />
The principle differences between include() &amp; require() are :<br />
(1).When “Include()”ed file is not found,only warnings will be displayed&amp; the script will continue to execute further.<br />
But,when “require()”ed file is not found,fatal errors will be displayed &amp; the script will halt execution.<br />
When we are dealing with non-confedintial data,<br />
inlude()is preffered.<br />
e.g. When we are dealing with a form which posts Sachin Tendulkar’s age &amp; no. of centuries ,after posting the form,<br />
the variables age &amp; no.centuries will be displayed on the URL of the opened active file.<br />
If “include()” ed file doesn’t exist ,only waning will be given &amp; the script will follow its execution afterwatds.</p>
<p>with including “require()” in our file ,we can safely process over confidential data ,such as user login form. Here both login ID &amp; passwords are checked &amp; script will continue only when “require()” function gets required file,otherwise,it will halt the script showing fatal error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amol Bhavsar,Pune</title>
		<link>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-440</link>
		<dc:creator>Amol Bhavsar,Pune</dc:creator>
		<pubDate>Thu, 17 Aug 2006 06:19:19 +0000</pubDate>
		<guid>http://discomoose.org/2006/04/28/the-difference-between-require-and-include/#comment-440</guid>
		<description>Thank you,
The principle differences between include() &#38; require() are :
(1).When "Include()"ed file is not found,only warnings will be displayed&#38; the script will continue to execute further.
       But,when "require()"ed file is not found,fatal errors will be displayed &#38; the script will halt execution.
 When we are dealing with non-confedintial data, 
inlude()is preffered. 
e.g. When we are dealing with a form which posts Sachin Tendulkar's age &#38; no. of centuries ,after posting the form,
the variables age &#38; no.centuries will be displayed on the URL of the opened active file.
If "include()" ed file doesn't exist ,only waning will be given &#38; the script will follow its execution afterwatds.
  

with including "require()" in our file ,we can safely process over confidential data ,such as user login form. Here both login ID &#38; passwords are checked &#38; script will continue only when "require()" function gets required file,otherwise,it will halt the script showing fatal error.</description>
		<content:encoded><![CDATA[<p>Thank you,<br />
The principle differences between include() &amp; require() are :<br />
(1).When &#8220;Include()&#8221;ed file is not found,only warnings will be displayed&amp; the script will continue to execute further.<br />
       But,when &#8220;require()&#8221;ed file is not found,fatal errors will be displayed &amp; the script will halt execution.<br />
 When we are dealing with non-confedintial data,<br />
inlude()is preffered.<br />
e.g. When we are dealing with a form which posts Sachin Tendulkar&#8217;s age &amp; no. of centuries ,after posting the form,<br />
the variables age &amp; no.centuries will be displayed on the URL of the opened active file.<br />
If &#8220;include()&#8221; ed file doesn&#8217;t exist ,only waning will be given &amp; the script will follow its execution afterwatds.</p>
<p>with including &#8220;require()&#8221; in our file ,we can safely process over confidential data ,such as user login form. Here both login ID &amp; passwords are checked &amp; script will continue only when &#8220;require()&#8221; function gets required file,otherwise,it will halt the script showing fatal error.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
