View Single Post
Old March 2nd, 2010, 01:51 PM   #19 (permalink)
Mike_K
Member
Verified Customer
 
Join Date: Dec 2005
Location: Germany
Posts: 165
Quote:
Originally Posted by Chuck S View Post
Just a sidebar here as stated the field itself is a mysql float point field which is why it is 10.50
Yes, somewhere is to change the number format

number_format(200000); // 200,000
number_format(200000, 2, ",", "."); // 200.000,00
number_format(200000, 2, ".", ","); // 200,000.00
number_format(200000, 2, ",", ""); // 200000,00


But it's okay with me, Chuck
Mike_K is offline   Reply With Quote