Hi everybody,
I have a form, here i used a field Calendar, i need calculated of wait days.
Example,

Can somebody help me?
I have a form, here i used a field Calendar, i need calculated of wait days.
Example,
Can somebody help me?
you need to call a PHP function and pass the date value and do the calculation in PHP code!
Example, pls!!!
$now = new DateTime();
$date = new DateTime($this->var('row.model.date_field'));
$days = $date->diff($date1)->format(%a);
$date = new DateTime($this->var('row.model.date_field'));
$days = $date->diff($date1)->format(%a);
You need to login to be able to post a reply.