Hello,
I am wondering how I can handle prices. I have a DB with a price field. I have the field set as 'double'.
When I display the field.
<? echo $row['price']; ?>
It displays the number but...how can I get it to add , to the price?
For example instead of
100000
100,000
I am not sure if the issue is with my DB or how I code php.
Thanks