Hai everyone, i got the timer script form Google, on the timer script the target time is set by using php, and the target time is reducing by javascript time, so its working good under local host, when i used this script in server, the php time is taken by the server time ( ex:American time) , and the javascript taken the local machine (ex: Indian time), so its not working in the server. could you please help me for run this script.
If you're running PHP5 and you're expecting all your users local times to be Indian as well, you could override PHP to use your Indian time. date_default_timezone_set("EST"); Of course you'd replace EST with whatever the name of your timezone is (EST would be mine; eastern standard time).