I need to display the currency on my website. Right now it will display the currency, but if the item is set at .02 it will just show 2c. I would like it to say $0.02 instead. How would I accomplish this?
This is my code in config.php
And this is the price area for the auctions_controller.phpCode:'currency' => 'USD',
Code:// Formating the price $auction['Auction']['start_price'] = $number->currency($auction['Auction']['start_price'], $this->appConfigurations['currency']); $auction['Auction']['savings']['price'] = $number->currency($auction['Auction']['savings']['price'], $this->appConfigurations['App.currency']); $auction['Auction']['savings']['percentage'] = $number->toPercentage($auction['Auction']['savings']['percentage']);



Reply With Quote

Bookmarks