How to make a number 8 digit as standard digit. The number will be get to a user id from database. Example
user_id = 1 // This should should be echo as 00000001
user_id = 11 // This should should be echo as 00000011
user_id = 111 // This should should be echo as 00000111
How can I code this? Please help thanks.