1
I cant seem to access my other thread, but I have solved my own problem. I have used the following code.
$timezone = 18
$calc = 3600*$timezone;
$date = gmdate("g:i a", time() + $calc);
$block['content'] .= "
Current time: $date\n";
?>
Change the timezone to the number you need to add to get from the server timezone to the desired timezone. eg. from GMT-8:00 to GMT+10:00 is +18 hours. For reverse (GMT+10:00 to GMT-8:00) use -18. This seems to work for the moment.
Thanks for trying to help, and I hope this is usefull for somebody else.
Cheers again
Chris