www/getnode.php

Mon, 07 Jan 2019 16:35:55 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 07 Jan 2019 16:35:55 +0100
changeset 180
a5aa3502310c
parent 44
6fea20eead56
child 296
69fadd1aded2
permissions
-rw-r--r--

Updated README. Getfermenter and getnode scripts return 0 and 1 instead of false and true for boolean values. Global variable my_uuid added. Moved the javascript out of mon_fermenter.php. Added log chart view button in the fermenter monitor.

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

mercurial