18 lines
501 B
PHP
Executable File
18 lines
501 B
PHP
Executable File
<?php
|
|
require_once('fixed/config/go_con.php');
|
|
access(30);
|
|
|
|
$today = date("Y-m-d");
|
|
if (!empty($_GET['date'])) {
|
|
$today = $_GET['date'];
|
|
if (DateTime::createFromFormat('Y-m-d', $today) == false) {
|
|
$today = date("Y-m-d");
|
|
}
|
|
}
|
|
|
|
if (strtotime($today) < strtotime('2023-07-01 00:00:00')) {
|
|
require_once('work/files/reports/returns_daily/1.php');
|
|
} else {
|
|
require_once('work/files/reports/returns_daily/1.php');
|
|
}
|
|
|