I need to change the time from GMT to EST, here is the code I am using
$currenttime = date(H . ":" . i);
I am using PHP 4.
Tried a couple of things but nothing will work due to the PHP 4 bit, any help appreciated.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Put this before you do any time computation
date_default_timezone_set('EST');Also your dateformat is wrong, this is how you do it:
$currenttime = date("H:i");