On a PHP-MySQL project I am working on, I am creating a user profile management system, and one of the fields is the user's birthdate.
I am using a MySQL 'date' (0000-00-00; Year-Month-Day) field for the birthdate, and have an entry form as pictured in the attachment. The registration form adds the birthday into the database through this SQL: "INSERT INTO users SET birthdate='$year-$month-$day'", and each of the selects/inputs in the attachment correspond with their respective variable in the SQL statement.
The problem comes with trying to make this field editable later on. Is it possible to split the 'date' fieldtype into 3 fieldtypes that will display in the 3 respective select/inputs for month, day, and year, or will I have to use another fieldtype altogether to be able to do that?