I get a "-1" for that two. I'm getting very confused, but I think it my be something like the following although I've probably made some mistakes. Can anyone impliment this?
// fourth monday in january
// ex (04,01,01)
function find_holiday ($times,$day,$month) {
$year = date("Y");
$dayofweek = day of week the month starts on;
$mydate = mktime(0, 0, 0, $month, 1, $year));
$space = $day + $dayofweek;
$times--;
$mydate = $space + (7 * $times);
return $mydate;
}