Files
crm.twinpol.com/modules/EcmReceipts2/getPaymentDate.php

4 lines
137 B
PHP
Raw Permalink Normal View History

2025-05-12 15:44:39 +00:00
<?php
$days = $_REQUEST['days'];
echo date("d.m.Y",mktime(0,0,0,$_REQUEST['month'],$_REQUEST['day'],$_REQUEST['year'])+3600*24*$days);
?>