calculated date
-
hi,
I would like to calculate a date + x days, is this plug in can to that
i have an acf field date_from and i would like to display a date_to, but this code doesnt work (php statement)
//date From
$dateFrom= get_field(‘date_from’);// month to add
$month = 2;// transform
$dateFromTimestamp = strtotime($dateFrom);// calcul (seems to be wrong)
$dateTo = date(‘d-m-Y’, strtotime(‘+’.$duree.’ month’, $dateFromTimestamp ));
// set the field
update_field( $date_to, $dateTo );PS I M NOT A PHP PRO ??
Many thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘calculated date’ is closed to new replies.