Hello,
When I insert a new record in the database and I need to record a time, I usually do this:
INSERT INTO table1 (field1, time) VALUES ('string', NOW())
The problem with NOW() is that it returns the local time of the server, whereas I want the GMT
I understand that with MySQL5 you can...