www/getispindel.php

Fri, 03 Jan 2020 15:21:22 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 03 Jan 2020 15:21:22 +0100
changeset 577
b4bfed3684d0
parent 570
c8a20234d7e7
child 578
e75ce5bbda73
permissions
-rw-r--r--

In production archive lists show always the OG from the brew fermenter SG. Possible fix for the not used og field in the database.

<?php

require_once('config.php');

if (isset($_GET["uuid"]))
	    $uuid = $_GET["uuid"];
else
	    $uuid = "'ispindel000'";


$mysqli = new mysqli(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
$query = "SELECT * FROM mon_ispindels WHERE node=".$uuid."";
$result = $mysqli->query($query);
$resultArray = $result->fetch_array(MYSQLI_ASSOC);
header("Content-type: application/json");
echo json_encode($resultArray);

mercurial