www/getco2meter.php

Tue, 14 Feb 2023 14:01:02 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 14 Feb 2023 14:01:02 +0100
changeset 845
ebf2bdca0d9b
parent 505
c09b67fd8323
permissions
-rw-r--r--

Version 0.3.43 bmsd if there is no ssid received from a node message then send '' to the mon_nodes table in the database instead of (null). (one last file)

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