I am customizing k2 store front end and I need some help with currency formatting.
My code is:
<span>Tax: <?php echo $item->tax ?></span>
<span>Price without tax: <?php echo $item->price; ?></span>
Don't know why but this code outputs:
Tax: 11
Price without TAX: 50.00000
I would like to output:
Tax: 11,00 EUR
Price without tax: 50,00 EUR
I found some hints for formatting values in PHP but I was not able to implement it in my case. I have a poor PHP knowledge.