prova così:
Codice PHP:
$week = date("W", strtotime($data_ing));
$year = date("Y", strtotime($data_ing));
for($day=1; $day<=7; $day++){
echo date('d-m-Y', strtotime($year."W".$week.$day))."<br/>";
}
prova così:
Codice PHP:
$week = date("W", strtotime($data_ing));
$year = date("Y", strtotime($data_ing));
for($day=1; $day<=7; $day++){
echo date('d-m-Y', strtotime($year."W".$week.$day))."<br/>";
}