hello,
I need help, and i hope someone can show me the way to do this.
I am given a GMT time in the format like this (hour:minute), how do i convert this to a 24 hour EST format?
$time = "02:30";
$time = explode(":", $time);
$newtime = mktime ( $time[0]+7, $time[1], 0, 0, 0, 0, 0 );
$newtime=date("H:i:s", $newtime);
echo "$newtime";
please help
i tried this, and it dont work