Example of parameter frm
The frm parameter enables you to display a date-time value or numeric value using a format string.
Date formats
Using the current date time
Format | Display |
---|---|
yyyy-mm-dd | 2024-11-21 |
dd/mm/yyyy | 21/11/2024 |
hh:nn:ss | 10:04:02 |
dddd dd mmmm | Thursday 21 November |
ddd dd mmm | Thu 21 Nov |
mm-dd-yyyy hh:nn | 11-21-2024 10:04 |
Numeric formats
Using the Php variable $amount = 1023.2568
Format | Display |
---|---|
$ 0,000.00 | $ 1,023.26 |
$ 0,000. (1) | $ 1,023 |
(1) The dot (.) at the bottom means there is no decimal. |
Using the Php variable $rate = 0.751897
0.000 % | 75.190 % |
Conditional formats
Using the Php variable $amount2 = -255.4893
Format | Display |
---|---|
+0,000.00|-0,000.00|0|- | -255.49 |
Reusable formats
Formats curr1 and rate1 are defined using parameter tplfrms.
Format | Display |
---|---|
curr1=$ 0,000.00 |
$ 1,023.26 |
rate1=0.000 % |
75.190 % |