Jump to content

Best way to save date of birth to database


pioneerx01

Recommended Posts

I need to add date of birth field to registration form and then save it to databse. I cannot figure out what might be best way of storing the date in the table. I could convert it to unix epoch time, or I could do YYYYMMDD.

 

Thoughts? What would be the easiest method of saving the DOB?

I am not asking on how to do it, just the format. Thanks

When inserting values into the database they should be in their rawest state. Not formatting should be applied.

 

As you storing a date you should use a date type as field type. You can then use MySQL's Date and Time aggregate functions (or PHP's date and time functions) to format the user s DOB it into a human readable format eg convert 2002-02-08 into Feb 8th 2002

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.