Everywhere I read about converting time to a users timezone time says the best method is to store a date adn time in UTC then just add the users timezone offset to this time.
So I am wanting to know, how can I store a date in UTC time, I use mysql's DATETIME field.
When adding a new record to mysql in my PHP code I would use NOW() to insert into mysql DATETIME.
Would I need to use something different then now() to store UTC time?