Quote:
Originally Posted by Chuck S 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