This is what I am using:
Prices are displayed like this: 1,500,000.00 or 1,125.00 or 1.00Code:<?php
$price = $ad['price'];
echo number_format($price, 2, '.', ',');
?>
I want them to show like this: 1,500,000 or 1,125 or 1
However I still want to show decimals in prices that are 1.09 or 110.75 or 1,111.99 or whatever.
I just want to get rid of the decimal zeros.
Thanks!
