www/getco2meter.php

Mon, 02 Dec 2019 13:24:34 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 02 Dec 2019 13:24:34 +0100
changeset 554
c62ff53cfc3d
parent 505
c09b67fd8323
permissions
-rw-r--r--

Added the new Kveik yeast fields to the product editor. Added auto update when a product is loaded. Added extra lines to the checklist about harvest yeast and pitch temperature.

<?php

require_once('config.php');

if (isset($_GET["uuid"]))
	    $uuid = $_GET["uuid"];
else
	    $uuid = "'c0ffeeee-dead-beef-caf0-3c71bffe4054'";


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

mercurial