When I Input a zip code in my db, if it starts with zero, db strips it.
//zip = 01845; $storeZip = $_POST['zip']; // saved 1845
db field int(5). Shall I change db field to something else?
Use a CHAR(5) if zip codes will always have 5 characters.
simple. great.