| Server IP : 45.94.215.241 / Your IP : 216.73.216.243 Web Server : Apache/2.4.66 (Ubuntu) System : Linux srv2937474766 7.0.0-28-generic #28-Ubuntu SMP PREEMPT_DYNAMIC Sun Jun 21 01:01:36 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.5.4 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/hamoon-gym-pwa/admin_web/ |
Upload File : |
<?php
session_start();
include_once("../config/config.php");
//error_reporting(E_ALL);
?>
<head>
<link href="../scripts/timetable/bootstrap.css" rel="stylesheet">
<link href="../scripts/timetable/tribal-bootstrap.css" rel="stylesheet">
<link href="../scripts/timetable/tribal-timetable.css" rel="stylesheet">
<title>TIMETABLE - <?php echo TITLE; ?></title>
<script src="../scripts/timetable/ga.js" async="" type="text/javascript"></script>
<script type="text/javascript" src="../scripts/timetable/jquery-latest.js"></script>
<script type="text/javascript" src="../scripts/timetable/jquery.js"></script>
<script type="text/javascript" src="../scripts/timetable/bootstrap-tooltip.js"></script>
<script type="text/javascript" src="../scripts/timetable/bootstrap-collapse.js"></script>
<script type="text/javascript" src="../scripts/timetable/tribal.js"></script>
<script type="text/javascript" src="../scripts/timetable/tribal-shared.js"></script>
<script type="text/javascript" src="../scripts/timetable/tribal-timetable.js"></script>
<link rel="shortcut icon" href="../images/favicon.ico">
</head>
<?php
include_once("../classes/class_database.php");
include_once("../functions/functions1.php");
include_once("../classes/jdatetime.class.php");
include_once("../functions/date.php");
$db=new database();
$jdate = new jDateTime(false,true,'Asia/Tehran');
$today = jDateTime::date("Y-m-d", time());
$day_split=preg_split('%-%',$today);
$today_year=$day_split[0];
$today_month=$day_split[1];
$today_day=$day_split[2];
$today_time = jDateTime::date("H:i:s", time());
$operator_id=$_SESSION['admin.'.$company_name_en.'_user_id'];
include("components/".$_GET['pid'].".php");
?>