Currency symbol

Is it possible to show currency only by suffix?

eg. US$, €, £

How?

You can use any one of these:-

1.Use money_format() of php:-

echo money_format('%(#10n', $number) . "\n";
// ($        1,234.57)

Reference:- http://php.net/manual/en/function.money-format.php

2.Use html codes for currency and concatenate it with your number.

Reference:- http://character-code.com/currency-html-codes.php

3.Direct concatenate $ with your number value:-

<?php 
  $numbers = 10; 
  echo '
```.$numbers;

I would like to display only that character (US$, €, £), from the language setting. Without number…