In PHP, I need to display a big 5 digit, graphical counter from a number fetched from a database. Examples:
- If number = 1, counter should display 00001
- If number = 15, counter should display 00015
- if number = 999, counter should display 00999
What's the easiest way to achieve this?