booking/returns_daily.php
2025-03-24 19:02:58 +03:00

18 lines
501 B
PHP

<?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');
}