www/getispindel.php

changeset 570
c8a20234d7e7
child 578
e75ce5bbda73
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/www/getispindel.php	Sat Dec 14 21:02:57 2019 +0100
@@ -0,0 +1,16 @@
+<?php
+
+require_once('config.php');
+
+if (isset($_GET["uuid"]))
+	    $uuid = $_GET["uuid"];
+else
+	    $uuid = "'ispindel000'";
+
+
+$mysqli = new mysqli(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
+$query = "SELECT * FROM mon_ispindels WHERE node=".$uuid."";
+$result = $mysqli->query($query);
+$resultArray = $result->fetch_array(MYSQLI_ASSOC);
+header("Content-type: application/json");
+echo json_encode($resultArray);

mercurial