www/getnode.php

Mon, 24 Dec 2018 23:10:52 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 24 Dec 2018 23:10:52 +0100
changeset 151
2c9cfe2f0860
parent 44
6fea20eead56
child 180
a5aa3502310c
permissions
-rw-r--r--

Merged prod_main and prod_recipe database tables into products. Added recipe tabs in the products editor.

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