View Single Post
Old 12-10-2009, 01:50 AM   #2 (permalink)
ChrisR
The Wanderer
 
Join Date: Dec 2008
Posts: 15
Thanks: 2
ChrisR is on a distinguished road
Default

This is how my friend done it.

make a function and make sure your server timezone is GMT

PHP Code:
function getTime($timzone){
return 
time() + 60 $timezone;
}

getTime(2); // Get's the current time of GMT+2 
ChrisR is offline  
Reply With Quote