winlog/api/api_connexions.php
2021-11-30 14:26:31 +01:00

13 lines
330 B
PHP

<?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 = Connexions();
$json_connexions = json_encode($connexions);
echo($json_connexions);
?>