Files
crm.twinpol.com/modules/EcmReceipts2/getPaymentDate.php
2025-05-12 15:44:39 +00:00

4 lines
137 B
PHP
Executable File

<?php
$days = $_REQUEST['days'];
echo date("d.m.Y",mktime(0,0,0,$_REQUEST['month'],$_REQUEST['day'],$_REQUEST['year'])+3600*24*$days);
?>