02.10.2014, 21:30
No, it should be an integer if using Unix timestamps. A timestamp saves the number of seconds passed since 1/1/1970. Something like 1.4 billion currently. That value can be converted back into a date and time. Most easily done with the FROM_UNIXTIME MySQL function, but there are Pawn implementations as well (although slower).
PHP код:
SELECT FROM_UNIXTIME(1412285145, '%M %D %Y, at %H:%i')
Код:
October 2nd 2014, at 23:25