12 lines
231 B
PHP
Executable File
12 lines
231 B
PHP
Executable File
<?
|
|
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();
|
|
?>
|