www/getnode.php

Sun, 04 Jul 2021 14:25:52 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 04 Jul 2021 14:25:52 +0200
changeset 767
08c0343b622b
parent 572
7a03181d29a3
permissions
-rw-r--r--

Improved error handling for inventory equipments, fermentables, hops, miscs, suppliers, water and yeasts.

<?php

require_once('config.php');

if (isset($_GET["uuid"]))
    $uuid = $_GET["uuid"];
else
    $uuid = "'c0c17800-fabb-4f22-a02a-4f83a7b1b21b'";


$query = "SELECT * FROM mon_nodes WHERE uuid=".$uuid."";
$mysqli = new mysqli(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
$result = $mysqli->query($query);
//Copy result into a associative array
$resultArray = $result->fetch_array(MYSQLI_ASSOC);
header("Content-type: application/json");
echo json_encode($resultArray);

mercurial