$currentDate = date(“d/m/Y”); $firstDayOfMonth = date(“01/m/Y”);
if ($currentDate === $firstDayOfMonth) { $score = 10; } else { $score = “”; }
return $score;