0 :2; print ("$". Number_format($amt,$num_decimals).
You can use number_format to do this. Example: $Amount = 200.00; echo "$" . Number_format($Amount); //$200.
How about a custom function to handle the situation accordingly: function my_number_format($number) { if(strpos($number, '. ')) { return number_format($number, 2); } else { return $number; } }.
There are a couple of ways. Probably the most universally supported and recommended method is sprintf. Sprintf("%01.2f", "200.5"); //200.50 sprintf("%01.2f", "10"); //10.00 number_format is good as well, and has all sorts of options, and it will add thousands separators and such if requested to do so.
There's also a money_format function, but it is unsupported on Windows servers.
I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.