www/getnode.php

Tue, 01 Jan 2019 16:24:17 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 01 Jan 2019 16:24:17 +0100
changeset 162
45248acb6252
parent 44
6fea20eead56
child 180
a5aa3502310c
permissions
-rw-r--r--

Added contents on the Taste tab. Fixed a locked checkbox bug. Disable tabs depending on the project stage.

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