www/getispindel.php

Sun, 20 Dec 2020 13:40:56 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 20 Dec 2020 13:40:56 +0100
changeset 724
66e0b4ef9268
parent 587
31caffee8c9c
permissions
-rw-r--r--

Lintner to Kolbach gives only positive results. Round Kolbach to Lintner to 3 decimals.

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