can use this code to exclude public holiday? just store inside the php??
<?php
$month = date("m");
$day = date("d");
// holiday's date that you want to skip
if ($month == "10" && $day == "31") {
/ place code to skip to next day here
You want to make it so that it doesn't count the day, but that it goes back to the next date and not reset to 0. To do this, maybe you could find out what date that the holiday is on, and then say something like
$firstday== 4
or whatever the next day would be, so that the week starts over on that date.
You would then have to make sure that the weekends still aren't counted for that week and make sure the lastday is still set to 6
/
}
?>