www/getfermenter.php

Wed, 15 May 2019 16:44:09 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 15 May 2019 16:44:09 +0200
changeset 373
ee16d9b844d8
parent 296
69fadd1aded2
child 572
7a03181d29a3
permissions
-rw-r--r--

Added some info yo the about screen. Added calculating beer color using the method documented by Dirk Naudt. This looks like originated from a European Brewing Convention in 1948.

<?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;
}
header("Content-type: application/json");
echo json_encode($resultArray);

mercurial