I have 3 sperate variables, one for day, one for month and one for year, is there a way i can add these together into one field that will be acceptable to mysql date format database?
thanks
Assuming that the variables all hold integers and not strings (03, not March) in them, yes. The format for the DATE type in MySQL is YYYY-MM-DD, so you can just concatenate them together with dashes in between.