How To Display Money Currency Format In Php With Simple Math
- Forums
- PHP
- How To Display Money Currency Format In Php With Simple Math
hi, i have a quick question. i am using the round() function to show the item price on my shopping cart in php, but it omits the zero [1297], Last Updated: Sat May 18, 2024
amazed
Wed May 11, 2011
1 Comments
925 Visits
hi, i have a quick question. i am using the round() function to show the item price on my shopping cart in php, but it omits the zero
for example:
$price = 1.51;
$tax = .19
$total = $price + $tax; // $1.60
echo $total;
is display this: 1.6
i want it to show 1.60 not 1.6
how do i do this?
echo number_format($total, 2, '.', ',');
OUTPUT: 1.60
https://www.wallpaperama.com/forums/_wwxlly.html