show/hide this revision's text 2 added 376 characters in body

I'd recommend the same as i do for all dates in any db engine, the db native type. (DATETIME)

Just use "YYYY-MM-DD HH:MM:SS" for inserting in php: date('Y-m-d H:i:s', $myTimeStampInSeconds);

-edit in response to comments below here -

  1. for selected columns you can use $timestamp = strtotime( $yourColumnValue );
  2. i recommend storing in the databas native format because you can then use SQL to compare records using SQL date/time functions like DATEADD() etc.
show/hide this revision's text 1

I'd recommend the same as i do for all dates in any db engine, the db native type. (DATETIME)

Just use "YYYY-MM-DD HH:MM:SS" for inserting in php: date('Y-m-d H:i:s', $myTimeStampInSeconds);