Hi,
If I have the following:
$amount = "22.50"; $amount2 = "3"; $total = "$amount * $amount2";
...and echo $total, I get: 67.5
I want this to actually display: 67.50
What's the correct syntax?
try using number_format()
Cgraz
Thanks for that.