www/getnode.php

Sat, 15 Dec 2018 23:22:11 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sat, 15 Dec 2018 23:22:11 +0100
changeset 143
122f64716161
parent 44
6fea20eead56
child 180
a5aa3502310c
permissions
-rw-r--r--

During recipes import of miscs ingredients, convert time in Secondary to days. The hop grid also display the country of origin. Misc ingredients now use a temporary weight table just like the hops.

<?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