<?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: json_decode() Not Working in PHP?</title>
	<atom:link href="http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/feed/" rel="self" type="application/rss+xml" />
	<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/</link>
	<description>Your peek inside the collective mind of The Frontier Group</description>
	<lastBuildDate>Wed, 21 Jul 2010 07:16:08 +0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kashish</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-1323</link>
		<dc:creator>Kashish</dc:creator>
		<pubDate>Wed, 30 Jun 2010 07:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-1323</guid>
		<description>Hey,
Thank you very very much.I was very stuck up with that problem as I am new to php.Searched a lot but coudn&#039;t make out.Your code helped me a lot.Thank you once again.</description>
		<content:encoded><![CDATA[<p>Hey,<br />
Thank you very very much.I was very stuck up with that problem as I am new to php.Searched a lot but coudn&#8217;t make out.Your code helped me a lot.Thank you once again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mazeb</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-946</link>
		<dc:creator>Mazeb</dc:creator>
		<pubDate>Fri, 23 Apr 2010 21:09:05 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-946</guid>
		<description>Thx a lot man that was giving me a headache i knew it was something related to the server but couldn&#039;t figure out what. And now it works like a charm</description>
		<content:encoded><![CDATA[<p>Thx a lot man that was giving me a headache i knew it was something related to the server but couldn&#8217;t figure out what. And now it works like a charm</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Beaule</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-835</link>
		<dc:creator>James Beaule</dc:creator>
		<pubDate>Wed, 24 Mar 2010 13:51:58 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-835</guid>
		<description>You wouldnt believe how long ive been searching for something like this. Browsed through 5 pages of Yahoo results couldnt find diddly squat. Quick search on bing. There this is.... Really have to start using it more often!</description>
		<content:encoded><![CDATA[<p>You wouldnt believe how long ive been searching for something like this. Browsed through 5 pages of Yahoo results couldnt find diddly squat. Quick search on bing. There this is&#8230;. Really have to start using it more often!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kulish</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-832</link>
		<dc:creator>kulish</dc:creator>
		<pubDate>Thu, 11 Mar 2010 09:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-832</guid>
		<description>thanks dear, its really helpfull...</description>
		<content:encoded><![CDATA[<p>thanks dear, its really helpfull&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-831</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Mon, 08 Mar 2010 03:24:48 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-831</guid>
		<description>Awesome! Thanks for preventing me from banging my head.</description>
		<content:encoded><![CDATA[<p>Awesome! Thanks for preventing me from banging my head.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-815</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 26 Feb 2010 00:14:54 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-815</guid>
		<description>You da man! I don&#039;t enjoy debugging AJAX, and this saved my butt.</description>
		<content:encoded><![CDATA[<p>You da man! I don&#8217;t enjoy debugging AJAX, and this saved my butt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-652</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Mon, 11 Jan 2010 02:56:26 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-652</guid>
		<description>just a little modification :)

function _json_decode($string, $flag = false) {
	if (get_magic_quotes_gpc()) {
		$string = stripslashes($string);
	}

	return json_decode($string, $flag);
}</description>
		<content:encoded><![CDATA[<p>just a little modification :)</p>
<p>function _json_decode($string, $flag = false) {<br />
	if (get_magic_quotes_gpc()) {<br />
		$string = stripslashes($string);<br />
	}</p>
<p>	return json_decode($string, $flag);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gordon</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-650</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Sat, 09 Jan 2010 17:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-650</guid>
		<description>Hi, Thanks for this post.  I&#039;ve been scratching my head for the afternoon on this one, a piece of code using json_decode() was working on my local server but not when I put it online.</description>
		<content:encoded><![CDATA[<p>Hi, Thanks for this post.  I&#8217;ve been scratching my head for the afternoon on this one, a piece of code using json_decode() was working on my local server but not when I put it online.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arthur Kay</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-351</link>
		<dc:creator>Arthur Kay</dc:creator>
		<pubDate>Sun, 23 Aug 2009 20:41:04 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-351</guid>
		<description>This has taken me hours to figure out, and I&#039;ve utter more swear words at this damn thing than I care to admit.

Problem solved. Thanks for posting this!</description>
		<content:encoded><![CDATA[<p>This has taken me hours to figure out, and I&#8217;ve utter more swear words at this damn thing than I care to admit.</p>
<p>Problem solved. Thanks for posting this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: menslow</title>
		<link>http://thefrontiergroup.com.au/blog/2008/11/json_decode_php/comment-page-1/#comment-300</link>
		<dc:creator>menslow</dc:creator>
		<pubDate>Fri, 24 Jul 2009 13:41:50 +0000</pubDate>
		<guid isPermaLink="false">http://thefrontiergroup.com.au/blog/?p=147#comment-300</guid>
		<description>Yes! Thank you!! I owe you a beer next time I&#039;m in Perth.</description>
		<content:encoded><![CDATA[<p>Yes! Thank you!! I owe you a beer next time I&#8217;m in Perth.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
