Hi,
I've used the number format function to display currency amounts in EURO like this:
echo "€ " . number_format($amount, 2, '.', '')
But now I need to format this in cents - where the variable $amount is for example 250000 instead of 250. The output I need should look like this €250.00
I don't know how to do this - can anyone please help with this?