Here Are Some Example Of Money Currency Format In Php
- Forums
- PHP
- Here Are Some Example Of Money Currency Format In Php
here's an example you can use if you want to display the value of $price in currency format you can use in your php code [1298], Last Updated: Sat May 18, 2024
amazed
Sun May 15, 2011
0 Comments
4880 Visits
here's an example you can use if you want to display the value of $price in currency format:
for example:
<?php
# WWW.WALLPAPERAMA.COM
$price = 1.51;
$tax = .19
$total = $price + $tax; // $1.60
echo $total;
?>
the OUTPUT will look like this: 1.6
but if you want it to show in currency value its better like this:
1.60 like in cents and dollars, well its simple, just add the number_format() function. we change our code to this:
<?php
# WWW.WALLPAPERAMA.COM
$price = 1.51;
$tax = .19
$total = $price + $tax; // $1.60
echo number_format($total, 2, '.', ',');
?>
the OUTPUT will look like this: 1.60
hope that helps explain what i was trying to do on my previous post