I think you will need to use the DATETIME attribute rather then timestamp to control the date and time, given your server is in a different timezone.
ALTER TABLE tablename ADD timeadded DATETIME;
You can then use the mktime function to edit the date and time before insertion into the database.
http://uk.php.net/manual/en/function.mktime.php