how can i calculate the days between two dates?
tq
Days between two dates
Moderator: General Moderators
just days
-
Hi,
just calculating the days with timestamps (time() http://www.php.net/manual/en/function.time.php) should be easy!?
($timestamp2 - $timestamp1) / (60*60*24) = amount of days.
djot
-
Hi,
just calculating the days with timestamps (time() http://www.php.net/manual/en/function.time.php) should be easy!?
($timestamp2 - $timestamp1) / (60*60*24) = amount of days.
djot
-