Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was having trouble displaying some prices on my website in currency format (2 decimal places). Instead the values were being displayed at 4 decimal places.

Someone edited my original question and made it look terrible which made this post get negative rep!! :(.

Anyways, the answer is described below. Basically insert a function to my php variable.

share|improve this question

1 Answer

up vote 4 down vote accepted

I believe you could use the code below:

$numberformatted = number_format($number, 2, '.', '');

More information: http://php.net/manual/en/function.number-format.php

Hope that helps.

share|improve this answer
Thanks man, I used as follows: $MOQ_Unit_Price_formatted = number_format($MOQ_Unit_Price, 2, '.', ''); $BPQ_Unit_Price_formatted = number_format($BPQ_Unit_Price, 2, '.', ''); – Efficient Trade Ltd Feb 6 '12 at 19:06
I'm glad that was helpful :) – Jason Feb 6 '12 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.