initial commit

This commit is contained in:
2026-03-30 11:51:52 +02:00
commit 7ff76896e6
22 changed files with 1126 additions and 0 deletions

12
test.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
include $_SERVER['DOCUMENT_ROOT'] . "/include/all.php";
$input = file_get_contents('php://input');
$data = json_decode($input, true);
if (!$data) {
//echo json_encode(["RC" => 1, "stdout" => "Invalid JSON input"]);
echo $_GET['test'];
exit;
}
echo "envoyé : ".$data['test'];
?>