www/getwatersources.php

Thu, 12 Oct 2023 15:24:56 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Thu, 12 Oct 2023 15:24:56 +0200
changeset 850
26cc7ea0f790
parent 771
9856238e9217
permissions
-rw-r--r--

Send lastseen iSpindel over websocket. Disabled a debug logmessage again.

<?php
require_once('config.php');

$query = "SELECT record,name,unlimited_stock,calcium,sulfate,chloride,sodium,magnesium,ph,total_alkalinity,inventory,cost FROM inventory_waters ORDER BY name";
$connect = mysqli_connect(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
if (! $connect) {
	echo "[]";
	return;
}
mysqli_set_charset($connect, "utf8");
$result = mysqli_query($connect, $query);
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
	$waters[] = $row;
}
header("Content-type: application/json");
echo json_encode($waters);

mercurial