In my database, I have the record: '2013-01-24 16:40:08'
Using the function strtotime on PHP, I get the timestamp 1359045608.
Executing the query:
SELECT UNIX_TIMESTAMP(my_timestamp_column) FROM my_table WHERE my_id_column = my_id
I get the timestamp 1359056408 and not the timestamp 1359045608.
Converting 1359056408, I get '2013-01-24 19:40:08', why!?