www/getispindel.php

branch
stable
changeset 665
4d01937ae7af
parent 587
31caffee8c9c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/www/getispindel.php	Fri May 01 16:37:31 2020 +0200
@@ -0,0 +1,16 @@
+<?php
+
+require_once('config.php');
+
+if (isset($_GET["uuid"]))
+	    $uuid = $_GET["uuid"];
+else
+	    $uuid = "'c0ffeeee-cafe-dead-bee0-2af236d50dc9'";
+
+
+$mysqli = new mysqli(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
+$query = "SELECT * FROM mon_ispindels WHERE uuid=".$uuid."";
+$result = $mysqli->query($query);
+$resultArray = $result->fetch_array(MYSQLI_ASSOC);
+header("Content-type: application/json");
+echo json_encode($resultArray);

mercurial