Hi, I'm trying to display the time left and tried the following to display the time left for exactly two weeks. It displays the number of days correctly, but the hours seem to be off. It displays hours as seven (14 days, 7:00:00) instead of zero (14 days, 00:00:00).
$TimeLeft = 604800 * 2;
$Days = date( "j", $TimeLeft );
$HMS = date( "g:i:s", $TimeLeft );
$TimeLeft = "$Days days, $HMS";
Thanks in advance for any help!