Referencing an article from the year 2000 is not really helpful as a lot already changed since then and might not be true any longer. As others already mentioned in other related questions, TIMESTAMP values reference a specific point in time relative to January 1st, 1970 at UTC. DATETIME values on the contrary just store some date and time without a reference to any point in time. They are more like display values, a clock on the wall that shows you some value. A datetime of 2018-01-12 14:00:00
might be a different time in different timezones if you want to keep track of when something happened.
TIMESTAMP on the other hand is always stored as UTC and when read or used in datetime function, automatically is converted back to the connection's or database default timezone. So when your connection is set to +02:00, the actual value that will be stored in the TIMESTAMP column, will be 2018-01-12 12:00:00
instead of 2018-01-12 14:00:00
. When you then read the column with a +05:00 connection, you will see 2018-01-12 17:00:00
. A DATETIME value would always stay at 2018-01-12 14:00:00
no matter what timezone is set for the database or connection.
So for tracking when something has happened or when something will/should happen, TIMESTAMP is the way to go. When you just want to store a fixed date time independent of the timezone, then use DATETIME (e.g. users shall receive an email at 2 in the morning, as 2 in the morning is the same for everyone).