Having the 2147483647 MYSQL issue.
2147483647
When inserting an 11 digit number in the telephone field i am getting this number in return saved in the DB: 21
DB: 21
Check Integer Types (Exact Value) - INTEGER, INT, SMALLINT, TINYINT, MEDIUMINT, BIGINT and answer
2147483647 is the largest int value for mysql. Just change the type from int to bigint.
solution : just change the type from int to bigint or varchar to bigint.