<?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: Check cookies with php</title>
	<atom:link href="http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/</link>
	<description>italian geek and PROgrammer</description>
	<lastBuildDate>Thu, 09 Sep 2010 01:38:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>By: gizzer</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-347452</link>
		<dc:creator>gizzer</dc:creator>
		<pubDate>Tue, 02 Dec 2008 10:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-347452</guid>
		<description>all this cookie talk has made me hungry</description>
		<content:encoded><![CDATA[<p>all this cookie talk has made me hungry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-81229</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Fri, 08 Feb 2008 19:23:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-81229</guid>
		<description>Yes, it must be $_COOKIE[&#039;test&#039;]</description>
		<content:encoded><![CDATA[<p>Yes, it must be $_COOKIE['test']</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Graham</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-73355</link>
		<dc:creator>Graham</dc:creator>
		<pubDate>Sat, 19 Jan 2008 17:17:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-73355</guid>
		<description>Don&#039;t you have to say:

$_COOKIE[&#039;test&#039;]

instead of:

$_COOKIE[test]


I use a lot of PHP and that&#039;s always how I&#039;ve done it.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t you have to say:</p>
<p>$_COOKIE['test']</p>
<p>instead of:</p>
<p>$_COOKIE[test]</p>
<p>I use a lot of PHP and that&#8217;s always how I&#8217;ve done it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SA</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-66613</link>
		<dc:creator>SA</dc:creator>
		<pubDate>Wed, 02 Jan 2008 23:30:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-66613</guid>
		<description>Also i just wanted to say a really easy way to check cookies is with javascripts DOM


if (!navigator.cookieEnabled) { 
		document.write(&quot;No Cookies&quot;);
}else{
		document.write(&quot;Cookies Ok&quot;);
}	
</description>
		<content:encoded><![CDATA[<p>Also i just wanted to say a really easy way to check cookies is with javascripts DOM</p>
<p>if (!navigator.cookieEnabled) {<br />
		document.write(&#8220;No Cookies&#8221;);<br />
}else{<br />
		document.write(&#8220;Cookies Ok&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SA</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-66602</link>
		<dc:creator>SA</dc:creator>
		<pubDate>Wed, 02 Jan 2008 23:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-66602</guid>
		<description>The correct solution would be the first check to make sure the user has Javascript enabled and then check to make sure that cookies are enabled. I would agree with Bryansu that using a client side script rather then a server side script would make more sense and be more reliable.</description>
		<content:encoded><![CDATA[<p>The correct solution would be the first check to make sure the user has Javascript enabled and then check to make sure that cookies are enabled. I would agree with Bryansu that using a client side script rather then a server side script would make more sense and be more reliable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: KJ</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-9181</link>
		<dc:creator>KJ</dc:creator>
		<pubDate>Thu, 12 Apr 2007 15:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-9181</guid>
		<description>I strongly disagree with the Javascript solution. Lots of users turn off Javascript, so you may not get a reliable answer, whereas a server-side solution is sure to be executed.</description>
		<content:encoded><![CDATA[<p>I strongly disagree with the Javascript solution. Lots of users turn off Javascript, so you may not get a reliable answer, whereas a server-side solution is sure to be executed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryansu</title>
		<link>http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-550</link>
		<dc:creator>Bryansu</dc:creator>
		<pubDate>Sat, 11 Nov 2006 16:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.emanueleferonato.com/2006/06/06/check-cookies-with-php/#comment-550</guid>
		<description>You cant use php to do a cookies enable checking. In the initial stage before logging in the member page, you can do a redirect on the script to check if the client browser is cookie enable, but what if the user turn if the cookie half way browsing through your website?

The best way is to use javascript to check, because it&#039;s always client-side script and you don&#039;t need to reload the php page.</description>
		<content:encoded><![CDATA[<p>You cant use php to do a cookies enable checking. In the initial stage before logging in the member page, you can do a redirect on the script to check if the client browser is cookie enable, but what if the user turn if the cookie half way browsing through your website?</p>
<p>The best way is to use javascript to check, because it&#8217;s always client-side script and you don&#8217;t need to reload the php page.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
