www/getco2meter.php

Sun, 27 Jun 2021 16:56:52 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 27 Jun 2021 16:56:52 +0200
changeset 758
e6814bed4cb1
parent 505
c09b67fd8323
permissions
-rw-r--r--

Moved NaHCO3 and CaCO3 from the base additions to the water agent salts.

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