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 -
- for selected columns you can use
$timestamp = strtotime( $yourColumnValue ); - 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.
