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.
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
Put this before you do any time computation Also your dateformat is wrong, this is how you do it: |
|||||
|
H . ':' . i?? The format string is just that, a string:"H:i". – meagar Feb 1 at 0:39