www/gethopsources.php

Tue, 14 Feb 2023 11:29:01 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Tue, 14 Feb 2023 11:29:01 +0100
changeset 844
a6ee7b5b036b
parent 771
9856238e9217
permissions
-rw-r--r--

Version 0.3.43 bmsd if there is no ssid received from a node message then send '' to the mon_nodes table in the database instead of (null).

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

$query = "SELECT record,name,alpha,beta,humulene,caryophyllene,cohumulone,myrcene,hsi,total_oil,type,form,origin,inventory,cost FROM inventory_hops ORDER BY origin,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)) {
	$hops[] = $row;
}
header("Content-type: application/json");
echo json_encode($hops);

mercurial