<?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: Inconsistencies Between PHP on Windows (Show Me the Money_Format)</title>
	<atom:link href="http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Sat, 05 Jun 2010 14:17:35 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sergio Abreu</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-1275</link>
		<dc:creator>Sergio Abreu</dc:creator>
		<pubDate>Sun, 20 Dec 2009 15:14:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-1275</guid>
		<description>CORRECTING:
Thank you for posting this tutorial.
Based on your code (thanks) I have created a function that could be useful for all:
/* currency function by Sergio Abreu */
function currency( $number){
setlocale(LC_ALL, ”);
$locale = localeconv();
return $locale[&#039;currency_symbol&#039;] . ” ” . number_format($number, 2, $locale[&#039;decimal_point&#039;], $locale[&#039;thousands_sep&#039;]);
}</description>
		<content:encoded><![CDATA[<p>CORRECTING:<br />
Thank you for posting this tutorial.<br />
Based on your code (thanks) I have created a function that could be useful for all:<br />
/* currency function by Sergio Abreu */<br />
function currency( $number){<br />
setlocale(LC_ALL, ”);<br />
$locale = localeconv();<br />
return $locale['currency_symbol'] . ” ” . number_format($number, 2, $locale['decimal_point'], $locale['thousands_sep']);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergio Abreu</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-1274</link>
		<dc:creator>Sergio Abreu</dc:creator>
		<pubDate>Sun, 20 Dec 2009 15:12:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-1274</guid>
		<description>Thank you for posting this tutorial.
Based on your code (thanks) I have created a function that could be use do anyone:
   /* currency function  by Sergio Abreu */
   function currency( $number){
      setlocale(LC_ALL, &#039;&#039;);  
      $locale = localeconv();
      return $locale[&#039;currency_symbol&#039;] . &quot; &quot; . number_format($number, 2, $locale[&#039;decimal_point&#039;], $locale[&#039;thousands_sep&#039;]);
   }</description>
		<content:encoded><![CDATA[<p>Thank you for posting this tutorial.<br />
Based on your code (thanks) I have created a function that could be use do anyone:<br />
   /* currency function  by Sergio Abreu */<br />
   function currency( $number){<br />
      setlocale(LC_ALL, &#8221;);<br />
      $locale = localeconv();<br />
      return $locale['currency_symbol'] . &#8221; &#8221; . number_format($number, 2, $locale['decimal_point'], $locale['thousands_sep']);<br />
   }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mesbah Ahmed</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-1026</link>
		<dc:creator>Mesbah Ahmed</dc:creator>
		<pubDate>Fri, 04 Dec 2009 22:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-1026</guid>
		<description>Thanks a lot! Your hints saved me a lot of mid-night oil.</description>
		<content:encoded><![CDATA[<p>Thanks a lot! Your hints saved me a lot of mid-night oil.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-198</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 15 May 2009 01:51:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-198</guid>
		<description>I think that I should have used that instead. I wonder if there are any countries that have different separators for mon_thousands_sep and thousands_sep.</description>
		<content:encoded><![CDATA[<p>I think that I should have used that instead. I wonder if there are any countries that have different separators for mon_thousands_sep and thousands_sep.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-197</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Mon, 02 Mar 2009 09:11:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-197</guid>
		<description>I would personally use $locale[&#039;mon_decimal_point&#039;] and $locale[&#039;mon_thousands_sep&#039;] - very useful example, thanks.</description>
		<content:encoded><![CDATA[<p>I would personally use $locale['mon_decimal_point'] and $locale['mon_thousands_sep'] &#8211; very useful example, thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-196</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Mon, 29 Sep 2008 22:04:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-196</guid>
		<description>I would contact the author of the shopping cart and see if they have a fix for that issue. Unless you find a way to un-obfuscate the Ion Cube encoding there isn&#039;t anything you can do.</description>
		<content:encoded><![CDATA[<p>I would contact the author of the shopping cart and see if they have a fix for that issue. Unless you find a way to un-obfuscate the Ion Cube encoding there isn&#8217;t anything you can do.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alejandro</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-195</link>
		<dc:creator>alejandro</dc:creator>
		<pubDate>Sun, 28 Sep 2008 02:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-195</guid>
		<description>i have a big problem , i ve just buy a shop cart application who has bben developen in php but is encrypted with ion cube, the problem is tthat my server is a windows server and i have a money_format function that sends me a n error message .

i want to fix this but i cannot change the code because i have ion cube

is there a way to fix the php windows library to accept money_format?</description>
		<content:encoded><![CDATA[<p>i have a big problem , i ve just buy a shop cart application who has bben developen in php but is encrypted with ion cube, the problem is tthat my server is a windows server and i have a money_format function that sends me a n error message .</p>
<p>i want to fix this but i cannot change the code because i have ion cube</p>
<p>is there a way to fix the php windows library to accept money_format?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-194</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 24 May 2008 19:08:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-194</guid>
		<description>Save your love for Carl. Anyways, here is the &lt;a href=&quot;http://www.smert.net/stuff/fluff_friends.total.uniqueurls&quot; rel=&quot;nofollow&quot;&gt;list&lt;/a&gt;...</description>
		<content:encoded><![CDATA[<p>Save your love for Carl. Anyways, here is the <a href="http://www.smert.net/stuff/fluff_friends.total.uniqueurls" rel="nofollow">list</a>&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tara</title>
		<link>http://www.smert.net/2008/05/23/inconsistencies-between-php-on-windows-show-me-the-money_format/comment-page-1/#comment-193</link>
		<dc:creator>Tara</dc:creator>
		<pubDate>Sat, 24 May 2008 17:50:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.smert.net/?p=71#comment-193</guid>
		<description>Jason!  I would love you forever if you could fix the link to the fluff friends list!  I get rick rolled everytime!  LOL  I used to have it, but cant find it on my HD.  Pretty please???

Thanks &lt;3</description>
		<content:encoded><![CDATA[<p>Jason!  I would love you forever if you could fix the link to the fluff friends list!  I get rick rolled everytime!  LOL  I used to have it, but cant find it on my HD.  Pretty please???</p>
<p>Thanks &lt;3</p>
]]></content:encoded>
	</item>
</channel>
</rss>
