Hi,
If you know how many hours you need to add/subtract from the server-time, then you should be able to do like this when inserting the time.
INSERT INTO table
(datefield, ...)
VALUES (
DATE_ADD(NOW(), INTERVAL X HOUR),
...
)
You must change X to whatever hours you want to add. If you want to subtract hours from the time, use DATE_SUB instead of DATE_ADD.
Yours, Erik.