Старт

This commit is contained in:
2023-11-07 19:51:49 +06:00
commit 86542a157f
5002 changed files with 199551 additions and 0 deletions

11
monitoring/session.php Normal file
View File

@ -0,0 +1,11 @@
<?php
session_start();
if(isset($_SESSION['USER_ID']) && $_SESSION['USER_ID']!='' && $_SESSION['USER_ID']!='null')
{
echo '{"result":"OK","user_id":'.$_SESSION['USER_ID'].'}';
}else
{
echo '{"result":"ERROR","user_id":0}';
}