This commit is contained in:
jerome 2021-11-30 14:26:31 +01:00
parent 6e42f8e56d
commit f5b895fc34

View File

@ -1,17 +1,13 @@
<?php
// Ce script renvoie un object JSON des connexions en cours
// on pourra mettre ici l'include d'une lib d'authentification
include_once('../admin/connexions.php');
header('Content-Type: application/json; charset=utf-8');
$connexions = Connexion_machine();
$tableau_connexions = [];
foreach ($connexions as $machine => $conn) {
$conn["machine"] = $machine; // ajout d'un champ dans le hash $conn
array_push($tableau_connexions, $conn);
}
$connexions = Connexions();
$json_connexions = json_encode($tableau_connexions);
$json_connexions = json_encode($connexions);
echo($json_connexions);
?>