how to get first day of the week and month:
$year = 2004;
$week = 16;
// simple if current week
// i want get year and week ex. from next week and +1 month
// generated from $week
$firstDayOfWeek = ??; // numeric value
$monthOf_firstDayOfWeek = ??;
$x = date("Y,W", mktime(0, 0, 0, $monthOf_firstDayOfWeek, $firstDayOfWeek, $year));
// i have to do it with something like that ... because this is calendar that has kind of interval ex. i set that something has to be done at 16/2004 (week/year) and it's repeated at 16/2004 + 1month
tia
-t-