www/getispindel.php

Thu, 01 Jul 2021 13:24:19 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 01 Jul 2021 13:24:19 +0200
changeset 765
0218893a5b7f
parent 587
31caffee8c9c
permissions
-rw-r--r--

Added some tooltips to inventory yeasts. Added POF+ and STA1 columns to inventory yeasts list.

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