status/index.php
2024-01-26 15:06:35 +01:00

20 lines
379 B
PHP

<?php
header('Content-Type: text/html; charset=UTF-8');
header('Access-control-allow-origin: *');
error_reporting(E_ALL);
set_include_path('./include');
require_once("Formatter.php");
$formatter = new Formatter('./include/status.html');
if(!isset($_GET['room'])) {
print $formatter->format_allrooms();
} else {
print $formatter->format_oneroom($_GET['room']);
}
?>