www/getfermenter.php

Tue, 05 Feb 2019 21:55:22 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 05 Feb 2019 21:55:22 +0100
changeset 243
b43214d218c0
parent 180
a5aa3502310c
child 296
69fadd1aded2
permissions
-rw-r--r--

In stage Plan the brewdate data is saved, but not the brewdate itself. Added kettle_cm() function. Fixed serveral kettle heights when creating a new product. Print product prints a almost complete checklist in stages plan and brew.

<?php

require_once('config.php');

if (isset($_GET["uuid"]))
	    $uuid = $_GET["uuid"];
else
	    $uuid = "'ef166f25-1bb4-4bef-b112-a867af77f766'";


$mysqli = new mysqli(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
$query = "SELECT * FROM mon_fermenters WHERE uuid=".$uuid."";
$result = $mysqli->query($query);
$resultArray = $result->fetch_array(MYSQLI_ASSOC);
if ($resultArray['online'] == 'Y') {
  $resultArray['online'] = 1;
} else {
  $resultArray['online'] = 0;
}
echo json_encode($resultArray);

mercurial