dear all
i have a problem reagrding number_format
$a=199119.18292;
$b=number_format($a,2);
echo "<br>$b";
it will display 19,9119.18
but i don't want , befor .
how can i do it
Regards dhirendra
string number_format(float number, int decimals, string dec_point, string thousands_sep);
thousands_sep = ''
that may help, i have to check that
$a=199119.18292; $b=number_format( $a, 2, ".", ""); echo "<br>$b";
Will display 199119.18
/Mike