Log 2293
10/12/2023 2023-12-10 12:43// Placeholder for task start date
$taskStartDate = #תאריך התחלה#;
// Get current date
$currentDate = date(“d/m/Y”);
// Check if the task start date is today
if ($taskStartDate == $currentDate) {
return “כן”;
}
// Check if the task start date is in the past
elseif (strtotime($taskStartDate) < strtotime($currentDate)) {
return "עבר";
}
// Task start date must be in the future
else {
return "עתיד";
}