www/getispindel.php

Wed, 10 Aug 2022 14:32:58 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 10 Aug 2022 14:32:58 +0200
changeset 835
ca6b3d4f5a97
parent 587
31caffee8c9c
permissions
-rw-r--r--

Removed unused (I hope) database scripts.

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