When I add a number beginning with 0 into my MySQL database, it automatically gets converted to a single digit. These are mobile numbers, so I need to keep it starting with 0.
2 Answers
Store phone numbers as strings, not integers. (related: Common MySQL fields and their appropriate data types )