Hello.
I have one field on my submission form which is for the User's zip code. Originally I had it set to int(5), but when I submit my form with a five digit zip code it only stores 4 of the characters, omitting the first digit.
Example: On the form I type in for zip code: 07084. I then submit it and check the database but what is saved is 7084.
When I submit 07085 it is saved as 7085.
I tried changing it fron an int to a varchar but had the same results.