I am woandering how I can store time to my table in this format:
1311602030
Currently I am doing it this way:
INSERT INTO my_table (time) VALUES ( UTC_TIMESTAMP() )
which gives me back this:
2015-04-14 22:52:11
What I could do is:
INSERT INTO my_table ( time ) VALUES ( strtotime( UTC_TIMESTAMP() ) )
but isn't there a better way?