RE: [PHP] Finding # of weekdays between 2 dates..

2002-12-27 Thread Chad Day
: Chad Day Cc: php general Subject: Re: [PHP] Finding # of weekdays between 2 dates.. WFM: $nowdate = mktime(0, 0, 0, 4, 1, 2002); $futuredate = mktime(0, 0, 0, 5, 2, 2002); echo weekdaysBetween ($nowdate,$futuredate,2); I get 5 Chad Day wrote: >I found this function in the list archives wh

Re: [PHP] Finding # of weekdays between 2 dates..

2002-12-26 Thread Marek Kilimajer
WFM: $nowdate = mktime(0, 0, 0, 4, 1, 2002); $futuredate = mktime(0, 0, 0, 5, 2, 2002); echo weekdaysBetween ($nowdate,$futuredate,2); I get 5 Chad Day wrote: I found this function in the list archives while searching on how to find the number of a weekday (say, Tuesdays) between 2 dates..