www/getyeastsources.php

Sun, 31 Mar 2019 20:14:34 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 31 Mar 2019 20:14:34 +0200
changeset 337
faedcfa0610f
parent 296
69fadd1aded2
child 554
c62ff53cfc3d
permissions
-rw-r--r--

Added command to turn lights on in monitor fermenter when a camera is started. Added the missing tolerance field when selecting a new yeast in a product or recipe.

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

$query = "SELECT * FROM inventory_yeasts ORDER BY laboratory,product_id,name";
$connect = mysqli_connect(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
if (! $connect) {
	echo "[]";
	return;
}
$result = mysqli_query($connect, $query);
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
	$yeasts[] = array(
		'record' => $row['record'],
		'name' => $row['name'],
		'type' => $row['type'],
		'form' => $row['form'],
		'laboratory' => $row['laboratory'],
		'product_id' => $row['product_id'],
		'min_temperature' => $row['min_temperature'],
		'max_temperature' => $row['max_temperature'],
		'flocculation' => $row['flocculation'],
		'attenuation' => $row['attenuation'],
		'cells' => $row['cells'],
		'inventory' => $row['inventory'],
		'cost' => $row['cost'],
		'tolerance' => $row['tolerance']
	);
}
header("Content-type: application/json");
echo json_encode($yeasts);

mercurial