This is my current code:
$nm = strtotime('next monday 19:30');
$nt = strtotime('next wednesday 19:30');
$ns = strtotime('next Saturday 09:00');
It kind of works but let's say it is wednesday it won't tell me something like X hours, it will tell me 1 week X hours.
How do I fix this?
You can see the live demo here: http://www.forumalliance.x10.mx/troll.php
To calculate
weeks
andhours
first get time interval betweennow
anddesired time
. Then divide theinterval
by seven days equivalent seconds to get week no andmod
to get rest hours. Example: