Files
crm.e5.pl/modules/EcmCalendars/ShovNav.php

12 lines
231 B
PHP
Raw Permalink Normal View History

2024-04-27 09:23:34 +02:00
<?
require_once('modules/EcmCalendars/Calendar.php');
$c=new Calendar();
if($_REQUEST['date'])
{
$exp=explode("-",$_REQUEST['date']);
$c->year=$exp[0];
$c->month=$exp[1];
$c->day=$exp[2];
}
echo $c->showNavDay();
?>