Files
panel/front/test.php
2026-02-18 15:05:34 +01:00

15 lines
284 B
PHP
Executable File

<?php
ini_set("display_errors", 1);
ini_set("display_startup_errors", 1);
error_reporting(E_ALL);
/*foreach ($_SERVER as $key => $value) {
echo $key . " = " . $value . "<br>";
}*/
require "../main.php";
$mcServ = new mcServ();
echo $mcServ->checkApiAuth() ? "TRUE" : "FALSE";