www/getnode.php

Sat, 15 Dec 2018 11:06:14 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 15 Dec 2018 11:06:14 +0100
changeset 141
fe9e2a677611
parent 44
6fea20eead56
child 180
a5aa3502310c
permissions
-rw-r--r--

The yeast droplist sorting order changed. Misc ingredients time editor uses minutes or days depending on the use of the ingredient. The yeast editor can now use grams, ml or packs.

<?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);
if ($resultArray['online'] == 'Y') {
    $resultArray['online'] = true;
} else {
    $resultArray['online'] = false;
}
echo json_encode($resultArray);

mercurial