www/getco2meter.php

branch
stable
changeset 520
d25a1b160dba
parent 505
c09b67fd8323
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/www/getco2meter.php	Fri Oct 18 13:12:46 2019 +0200
@@ -0,0 +1,16 @@
+<?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