Store in GIT

This commit is contained in:
2026-06-17 15:46:26 +02:00
parent 47150cc7ca
commit 876ad89e72
134 changed files with 31034 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
header('Content-Type: application/json');
require("../../inc/connect.php");
require("../session.php");
$session = $_GET['session'];
if($session == "")
{
JError("no session");
}
//check session
verify_session($mysqli, $session);
JError("not implemented");
?>