Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Countdown with php ? Re: Countdown with php ?

#75018
The-Marshal
Member

ok i found this fancy script

Countdown
could you please make YEAR, MONTH, DAY only

i think here change the value


$date = array();
$date = $diffSecs % 60;
$date = floor($diffSecs/60)%60;
$date = floor($diffSecs/60/60)%24;
$date = floor($diffSecs/60/60/24)%7;
$date = floor($diffSecs/60/60/24/7);

i tried month like this


$date = floor($diffSecs/60/60/24/7)%30;

but didn’t working

I appreciate any help